mirror of
https://github.com/reactos/reactos.git
synced 2024-11-01 12:26:32 +00:00
31 lines
793 B
Plaintext
31 lines
793 B
Plaintext
/*
|
|
* PROJECT: ReactOS
|
|
* LICENSE: GPL - See COPYING in the top level directory
|
|
* FILE: ntoskrnl/ntoskrnl.rc
|
|
* PURPOSE: Kernel Resource File
|
|
* PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org)
|
|
*/
|
|
|
|
#include <winver.h>
|
|
#include <ntverp.h>
|
|
|
|
/* Version Data */
|
|
#define VER_FILETYPE VFT_DRV
|
|
#define VER_FILESUBTYPE VFT2_DRV_SYSTEM
|
|
#define VER_FILEDESCRIPTION_STR "NT Kernel & System"
|
|
#ifndef CONFIG_SMP
|
|
#define VER_INTERNALNAME_STR "ntoskrnl.exe"
|
|
#define VER_ORIGINALFILENAME_STR "ntoskrnl.exe"
|
|
#else
|
|
#define VER_INTERNALNAME_STR "ntkrnlmp.exe"
|
|
#define VER_ORIGINALFILENAME_STR "ntkrnlmp.exe"
|
|
#endif
|
|
#define VER_LANGNEUTRAL
|
|
#include "common.ver"
|
|
|
|
/* Bug Codes */
|
|
#include <bugcodes.rc>
|
|
|
|
/* Boot Theme Resources */
|
|
#include "inbv/bootanim.rc"
|