~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/ipxe/src/include/ipxe/version.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef _IPXE_VERSION_H
 
2
#define _IPXE_VERSION_H
 
3
 
 
4
/** @file
 
5
 *
 
6
 * Version number
 
7
 *
 
8
 */
 
9
 
 
10
FILE_LICENCE ( GPL2_OR_LATER_OR_UBDL );
 
11
 
 
12
#include <wchar.h>
 
13
 
 
14
extern unsigned long build_timestamp;
 
15
extern unsigned long build_id;
 
16
extern const int product_major_version;
 
17
extern const int product_minor_version;
 
18
extern const char product_version[];
 
19
extern const char product_name[];
 
20
extern const char product_short_name[];
 
21
extern const char build_name[];
 
22
extern const wchar_t product_wversion[];
 
23
extern const wchar_t product_wname[];
 
24
extern const wchar_t product_short_wname[];
 
25
extern const wchar_t build_wname[];
 
26
 
 
27
#endif /* _IPXE_VERSION_H */