[70] | 1 | // AiR-BOOT (c) Copyright 1998-2009 M. Kiewitz
|
---|
| 2 | //
|
---|
| 3 | // This file is part of AiR-BOOT
|
---|
| 4 | //
|
---|
| 5 | // AiR-BOOT is free software: you can redistribute it and/or modify it under
|
---|
| 6 | // the terms of the GNU General Public License as published by the Free
|
---|
| 7 | // Software Foundation, either version 3 of the License, or (at your option)
|
---|
| 8 | // any later version.
|
---|
| 9 | //
|
---|
| 10 | // AiR-BOOT is distributed in the hope that it will be useful, but WITHOUT ANY
|
---|
| 11 | // WARRANTY: without even the implied warranty of MERCHANTABILITY or FITNESS
|
---|
| 12 | // FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
---|
| 13 | // details.
|
---|
| 14 | //
|
---|
| 15 | // You should have received a copy of the GNU General Public License along with
|
---|
| 16 | // AiR-BOOT. If not, see <http://www.gnu.org/licenses/>.
|
---|
| 17 | //
|
---|
| 18 |
|
---|
| 19 |
|
---|
[188] | 20 |
|
---|
[70] | 21 | /*
|
---|
[188] | 22 | // OS/2 BLDLEVEL Information
|
---|
[70] | 23 | */
|
---|
[182] | 24 |
|
---|
[70] | 25 | // Vendor
|
---|
[182] | 26 | #ifndef BLDLVL_VENDOR
|
---|
[70] | 27 | #define BLDLVL_VENDOR "*UNKNOWN*"
|
---|
[182] | 28 | #endif
|
---|
| 29 |
|
---|
| 30 | // Build machine
|
---|
| 31 | #ifndef BLDLVL_MACHINE
|
---|
| 32 | #define BLDLVL_MACHINE "*UNKNOWN*"
|
---|
| 33 | #endif
|
---|
| 34 |
|
---|
[188] | 35 | // Build language
|
---|
| 36 | #define BLDLVL_LANGUAGE "EN"
|
---|
| 37 |
|
---|
| 38 |
|
---|
| 39 | // Release and TestBuild variants
|
---|
| 40 | #ifdef RELEASE
|
---|
| 41 |
|
---|
[70] | 42 | // Version
|
---|
| 43 | #define BLDLVL_MAJOR_VERSION "1"
|
---|
| 44 | #define BLDLVL_MIDDLE_VERSION "1"
|
---|
[229] | 45 | #define BLDLVL_MINOR_VERSION "6"
|
---|
[188] | 46 |
|
---|
| 47 | // Build date
|
---|
[229] | 48 | #define BLDLVL_YEAR "2018"
|
---|
| 49 | #define BLDLVL_MONTH "??"
|
---|
| 50 | #define BLDLVL_DAY "??"
|
---|
[188] | 51 |
|
---|
| 52 | // Build time
|
---|
| 53 | #define BLDLVL_HOURS "01"
|
---|
| 54 | #define BLDLVL_MINUTES "01"
|
---|
[229] | 55 | #define BLDLVL_SECONDS "06"
|
---|
[188] | 56 |
|
---|
| 57 | #else
|
---|
| 58 |
|
---|
| 59 | // Version
|
---|
| 60 | #define BLDLVL_MAJOR_VERSION "1"
|
---|
| 61 | #define BLDLVL_MIDDLE_VERSION "1"
|
---|
[229] | 62 | #define BLDLVL_MINOR_VERSION "5"
|
---|
[182] | 63 |
|
---|
[70] | 64 | // Build date
|
---|
[229] | 65 | #define BLDLVL_YEAR "2018"
|
---|
| 66 | #define BLDLVL_MONTH "07"
|
---|
[246] | 67 | #define BLDLVL_DAY "21"
|
---|
[182] | 68 |
|
---|
[70] | 69 | // Build time
|
---|
| 70 | #define BLDLVL_HOURS "23"
|
---|
| 71 | #define BLDLVL_MINUTES "59"
|
---|
| 72 | #define BLDLVL_SECONDS "59"
|
---|
[182] | 73 |
|
---|
[188] | 74 | #endif
|
---|