1/* 2 * PROJECT: ReactOS 3 * LICENSE: GPL - See COPYING in the top level directory 4 * FILE: ntoskrnl/ntoskrnl.rc 5 * PURPOSE: Kernel Resource File 6 * PROGRAMMERS: Alex Ionescu (alex.ionescu@reactos.org) 7 */ 8 9#include <winver.h> 10#include <ntverp.h> 11 12/* Version Data */ 13#define VER_FILETYPE VFT_DRV 14#define VER_FILESUBTYPE VFT2_DRV_SYSTEM 15#define VER_FILEDESCRIPTION_STR "NT Kernel & System" 16#ifndef CONFIG_SMP 17#define VER_INTERNALNAME_STR "ntoskrnl.exe" 18#define VER_ORIGINALFILENAME_STR "ntoskrnl.exe" 19#else 20#define VER_INTERNALNAME_STR "ntkrnlmp.exe" 21#define VER_ORIGINALFILENAME_STR "ntkrnlmp.exe" 22#endif 23#define VER_LANGNEUTRAL 24#include "common.ver" 25 26/* Bug Codes */ 27#include <bugcodes.rc> 28 29/* Boot Theme Resources */ 30#include "inbv/bootanim.rc" 31