2011-05-16 13:12:07 +00:00
|
|
|
/*
|
|
|
|
* COPYRIGHT: See COPYING in the top level directory
|
|
|
|
* PROJECT: ReactOS kernel
|
2015-10-01 18:12:45 +00:00
|
|
|
* FILE: include/reactos/version.h.cmake
|
2011-05-16 13:12:07 +00:00
|
|
|
* PURPOSE: Defines the current version
|
|
|
|
* PROGRAMMER: David Welch (welch@mcmail.com)
|
|
|
|
* REVISIONS:
|
2016-05-31 23:02:46 +00:00
|
|
|
* 1999-11-06 (ea)
|
|
|
|
* Moved from include/internal in include/reactos
|
|
|
|
* to be used by buildno.
|
|
|
|
* 2002-01-17 (ea)
|
|
|
|
* KERNEL_VERSION removed. Use
|
|
|
|
* reactos/buildno.h:KERNEL_VERSION_STR instead.
|
2011-05-16 13:12:07 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __VERSION_H
|
|
|
|
#define __VERSION_H
|
|
|
|
|
2016-05-31 23:02:46 +00:00
|
|
|
#define KERNEL_VERSION_MAJOR @KERNEL_VERSION_MAJOR@
|
|
|
|
#define KERNEL_VERSION_MINOR @KERNEL_VERSION_MINOR@
|
|
|
|
#define KERNEL_VERSION_PATCH_LEVEL @KERNEL_VERSION_PATCH_LEVEL@
|
2011-05-16 13:12:07 +00:00
|
|
|
|
|
|
|
#define COPYRIGHT_YEAR "@COPYRIGHT_YEAR@"
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* EOF */
|