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

Last change on this file since 67 was 64, checked in by Ben Rietbroek, 9 years ago

Updated Contact Information [v1.1.1-testing]

CAUTION:
This is a testbuild !
AirBoot uses the BIOS to access disks and a small coding error can trash
partition tables or other vital disk structures. You are advised to make
backups of TRACK0 and EBRs before using this testbuild. More info at:
https://rousseaux.github.io/netlabs.air-boot/pdf/AirBoot-v1.1.0-manual.pdf

File size: 1.8 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//~ #define BLDLVL_VENDOR "RDPe"
12#define BLDLVL_VENDOR "*UNKNOWN*"
13// Version
14#define BLDLVL_MAJOR_VERSION "1"
15#define BLDLVL_MIDDLE_VERSION "1"
16#define BLDLVL_MINOR_VERSION "1"
17// Build date
18#define BLDLVL_YEAR "2016"
19#define BLDLVL_MONTH "10"
20#define BLDLVL_DAY "10"
21// Build time
22//~ #define BLDLVL_HOURS "01"
23//~ #define BLDLVL_MINUTES "01"
24//~ #define BLDLVL_SECONDS "00"
25#define BLDLVL_HOURS "99"
26#define BLDLVL_MINUTES "99"
27#define BLDLVL_SECONDS "99"
28// Build machine
29//~ #define BLDLVL_MACHINE "OS2BLDBOX"
30#define BLDLVL_MACHINE "*UNKNOWN*"
31// Build language
32#define BLDLVL_LANGUAGE "EN"
33
34//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";
35char bldlevel[] = "@#"\
36 BLDLVL_VENDOR":"\
37 BLDLVL_MAJOR_VERSION"."\
38 BLDLVL_MIDDLE_VERSION"."\
39 BLDLVL_MINOR_VERSION"#@##1## "\
40 BLDLVL_YEAR"/"\
41 BLDLVL_MONTH"/"\
42 BLDLVL_DAY" "\
43 BLDLVL_HOURS":"\
44 BLDLVL_MINUTES":"\
45 BLDLVL_SECONDS" "\
46 BLDLVL_MACHINE"::"\
47 BLDLVL_LANGUAGE"::"\
48 BLDLVL_MINOR_VERSION"::@@"\
49 "SETBOOT Replacement to manage the AiR-BOOT Boot Manager";
50
51
52#ifdef __cplusplus
53};
54#endif
Note: See TracBrowser for help on using the repository browser.