- Synchronize up to trunk's revision r57864.
[reactos.git] / include / reactos / version.h.cmake
1 /*
2 * COPYRIGHT: See COPYING in the top level directory
3 * PROJECT: ReactOS kernel
4 * FILE: include/internal/version.h
5 * PURPOSE: Defines the current version
6 * PROGRAMMER: David Welch (welch@mcmail.com)
7 * REVISIONS:
8 * 1999-11-06 (ea)
9 * Moved from include/internal in include/reactos
10 * to be used by buildno.
11 * 2002-01-17 (ea)
12 * KERNEL_VERSION removed. Use
13 * reactos/buildno.h:KERNEL_VERSION_STR instead.
14 */
15
16 #ifndef __VERSION_H
17 #define __VERSION_H
18
19 #define KERNEL_VERSION_MAJOR @KERNEL_VERSION_MAJOR@
20 #define KERNEL_VERSION_MINOR @KERNEL_VERSION_MINOR@
21 #define KERNEL_VERSION_PATCH_LEVEL @KERNEL_VERSION_PATCH_LEVEL@
22
23 #define COPYRIGHT_YEAR "@COPYRIGHT_YEAR@"
24
25 /* KERNEL_VERSION_BUILD_TYPE is L"SVN", L"RC1", L"RC2" or L"" (for the release) */
26 #define KERNEL_VERSION_BUILD_TYPE "@KERNEL_VERSION_BUILD_TYPE@"
27
28
29 #endif
30
31 /* EOF */