/* * 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 #include /* 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" #include "include/resource.h" /* Bug Codes and Bitmaps */ #include IDB_BOOT_LOGO BITMAP "inbv/logo/1.bmp" IDB_HIBERNATE_LOGO BITMAP "inbv/logo/2.bmp" IDB_SHUTDOWN_LOGO BITMAP "inbv/logo/3.bmp" IDB_BAR_SERVER BITMAP "inbv/logo/4.bmp" IDB_LOGO BITMAP "inbv/logo/5.bmp" IDB_LOGO_HEADER BITMAP "inbv/logo/6.bmp" IDB_LOGO_BAND BITMAP "inbv/logo/7.bmp" IDB_BAR_PRO BITMAP "inbv/logo/8.bmp" IDB_SERVER_LOGO BITMAP "inbv/logo/5.bmp" IDB_SERVER_HEADER BITMAP "inbv/logo/14.bmp" IDB_SERVER_BAND BITMAP "inbv/logo/15.bmp"