| 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 |
|
|---|
| 20 | /*
|
|---|
| 21 | // OS/2 BLDLEVEL Information.
|
|---|
| 22 | */
|
|---|
| 23 |
|
|---|
| 24 | // Vendor
|
|---|
| 25 | #ifndef BLDLVL_VENDOR
|
|---|
| 26 | #define BLDLVL_VENDOR "*UNKNOWN*"
|
|---|
| 27 | #endif
|
|---|
| 28 |
|
|---|
| 29 | // Build machine
|
|---|
| 30 | #ifndef BLDLVL_MACHINE
|
|---|
| 31 | #define BLDLVL_MACHINE "*UNKNOWN*"
|
|---|
| 32 | #endif
|
|---|
| 33 |
|
|---|
| 34 | // Version
|
|---|
| 35 | #define BLDLVL_MAJOR_VERSION "1"
|
|---|
| 36 | #define BLDLVL_MIDDLE_VERSION "1"
|
|---|
| 37 | #define BLDLVL_MINOR_VERSION "1"
|
|---|
| 38 |
|
|---|
| 39 | // Build date
|
|---|
| 40 | #define BLDLVL_YEAR "2017"
|
|---|
| 41 | #define BLDLVL_MONTH "04"
|
|---|
| 42 | #define BLDLVL_DAY "13"
|
|---|
| 43 |
|
|---|
| 44 | // Build time
|
|---|
| 45 | //~ #define BLDLVL_HOURS "01"
|
|---|
| 46 | //~ #define BLDLVL_MINUTES "01"
|
|---|
| 47 | //~ #define BLDLVL_SECONDS "00"
|
|---|
| 48 | #define BLDLVL_HOURS "23"
|
|---|
| 49 | #define BLDLVL_MINUTES "59"
|
|---|
| 50 | #define BLDLVL_SECONDS "59"
|
|---|
| 51 |
|
|---|
| 52 | // Build language
|
|---|
| 53 | #define BLDLVL_LANGUAGE "EN"
|
|---|