summaryrefslogtreecommitdiffstats
path: root/qemu/roms/ipxe/src/include/ipxe/version.h
blob: ae4275db1fdab2065f798e431ff11c3b128ae5e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#ifndef _IPXE_VERSION_H
#define _IPXE_VERSION_H

/** @file
 *
 * Version number
 *
 */

FILE_LICENCE ( GPL2_OR_LATER );

#include <wchar.h>

extern unsigned long build_timestamp;
extern unsigned long build_id;
extern const int product_major_version;
extern const int product_minor_version;
extern const char product_version[];
extern const char product_name[];
extern const char product_short_name[];
extern const char build_name[];
extern const wchar_t product_wversion[];
extern const wchar_t product_wname[];
extern const wchar_t product_short_wname[];
extern const wchar_t build_wname[];

#endif /* _IPXE_VERSION_H */