source: trunk/tools/os2/setaboot/setaboot.h@ 57

Last change on this file since 57 was 57, checked in by Ben Rietbroek, 10 years ago

All source-files lowercased [v1.1.1-testing]

Some standard files like 'COPYING', 'LICENSE', etc. have not been
converted to lower case because they are usually distributed uppercased.

File size: 1.6 KB
Line 
1#ifdef __cplusplus
2extern "C" {
3#endif
4
5
6/*
7// OS/2 BLDLEVEL Information.
8*/
9// Vendor
10#define BLDLVL_VENDOR "KIEWITZ"
11// Version
12#define BLDLVL_MAJOR_VERSION "1"
13#define BLDLVL_MIDDLE_VERSION "1"
14#define BLDLVL_MINOR_VERSION "0"
15// Build date
16#define BLDLVL_YEAR "2013"
17#define BLDLVL_MONTH "04"
18#define BLDLVL_DAY "05"
19// Build time
20#define BLDLVL_HOURS "01"
21#define BLDLVL_MINUTES "01"
22#define BLDLVL_SECONDS "00"
23// Build machine
24#define BLDLVL_MACHINE "*UNKNOWN*"
25// Build language
26#define BLDLVL_LANGUAGE "EN"
27
28//char bldlevel[] = "@#KIEWITZ:1.0.8#@##1## 2011/01/17 21:10:00 ecs-devbox:ASD123:L:C:8::99@@ Adapter Driver for PATA/SATA DASD";
29char bldlevel[] = "@#"\
30 BLDLVL_VENDOR":"\
31 BLDLVL_MAJOR_VERSION"."\
32 BLDLVL_MIDDLE_VERSION"."\
33 BLDLVL_MINOR_VERSION"#@##1## "\
34 BLDLVL_YEAR"/"\
35 BLDLVL_MONTH"/"\
36 BLDLVL_DAY" "\
37 BLDLVL_HOURS":"\
38 BLDLVL_MINUTES":"\
39 BLDLVL_SECONDS" "\
40 BLDLVL_MACHINE"::"\
41 BLDLVL_LANGUAGE"::"\
42 BLDLVL_MINOR_VERSION"::@@"\
43 "SETBOOT Replacement to manage the AiR-BOOT Boot Manager";
44
45
46
47
48#ifdef __cplusplus
49};
50#endif
Note: See TracBrowser for help on using the repository browser.