mirror of
https://github.com/reactos/reactos.git
synced 2024-11-02 12:53:33 +00:00
c2d0d784c7
- Create a branch to do a proper merge of USB work from a trunk base instead of from cmake-bringup - In the future, DO NOT under any circumstances branch another branch. This leads to merge problems! svn path=/branches/usb-bringup-trunk/; revision=55018
43 lines
1.4 KiB
Plaintext
43 lines
1.4 KiB
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"
|
|
#include "include/resource.h"
|
|
|
|
//
|
|
// Bug Codes and Bitmaps
|
|
//
|
|
#include "bugcodes.rc"
|
|
IDB_BOOT_LOGO BITMAP DISCARDABLE "inbv/logo/1.bmp"
|
|
IDB_HIBERNATE_LOGO BITMAP DISCARDABLE "inbv/logo/2.bmp"
|
|
IDB_SHUTDOWN_LOGO BITMAP DISCARDABLE "inbv/logo/3.bmp"
|
|
IDB_BAR_SERVER BITMAP DISCARDABLE "inbv/logo/4.bmp"
|
|
IDB_LOGO BITMAP DISCARDABLE "inbv/logo/5.bmp"
|
|
IDB_LOGO_HEADER BITMAP DISCARDABLE "inbv/logo/6.bmp"
|
|
IDB_LOGO_BAND BITMAP DISCARDABLE "inbv/logo/7.bmp"
|
|
IDB_BAR_PRO BITMAP DISCARDABLE "inbv/logo/8.bmp"
|
|
IDB_SERVER_LOGO BITMAP DISCARDABLE "inbv/logo/5.bmp"
|
|
IDB_SERVER_HEADER BITMAP DISCARDABLE "inbv/logo/14.bmp"
|
|
IDB_SERVER_BAND BITMAP DISCARDABLE "inbv/logo/15.bmp"
|