mirror of
https://github.com/UzixLS/KernelEx.git
synced 2025-07-19 07:21:20 +03:00
132 lines
3.2 KiB
Plaintext
Executable File
132 lines
3.2 KiB
Plaintext
Executable File
#include "resource.h"
|
||
#include "version.h"
|
||
#define _QUOTEME(x) #x
|
||
#define QUOTEME(x) _QUOTEME(x)
|
||
|
||
#define APSTUDIO_READONLY_SYMBOLS
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// Generated from the TEXTINCLUDE 2 resource.
|
||
//
|
||
#include "afxres.h"
|
||
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
#undef APSTUDIO_READONLY_SYMBOLS
|
||
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
// Neutral resources
|
||
|
||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_NEU)
|
||
#ifdef _WIN32
|
||
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
|
||
#pragma code_page(1250)
|
||
#endif //_WIN32
|
||
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// String Table
|
||
//
|
||
|
||
STRINGTABLE DISCARDABLE
|
||
BEGIN
|
||
IDS_NOTREADY "System is not KernelEx-ready.\nPlease reinstall KernelEx."
|
||
IDS_STUBMISMATCH "Stub version mismatch (expected: %d, got: %d).\nPlease reinstall KernelEx."
|
||
IDS_OLDVER "Another KernelEx version has been detected: %s.\nPlease uninstall all other versions and reinstall latest version."
|
||
END
|
||
|
||
#endif // Neutral resources
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
|
||
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
// Polish resources
|
||
|
||
#if !defined(AFX_RESOURCE_DLL) || defined(AFX_TARG_PLK)
|
||
#ifdef _WIN32
|
||
LANGUAGE LANG_POLISH, SUBLANG_DEFAULT
|
||
#pragma code_page(1250)
|
||
#endif //_WIN32
|
||
|
||
#ifdef APSTUDIO_INVOKED
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// TEXTINCLUDE
|
||
//
|
||
|
||
1 TEXTINCLUDE DISCARDABLE
|
||
BEGIN
|
||
"resource.h\0"
|
||
END
|
||
|
||
2 TEXTINCLUDE DISCARDABLE
|
||
BEGIN
|
||
"#include ""afxres.h""\r\n"
|
||
"\0"
|
||
END
|
||
|
||
3 TEXTINCLUDE DISCARDABLE
|
||
BEGIN
|
||
"\r\n"
|
||
"\0"
|
||
END
|
||
|
||
#endif // APSTUDIO_INVOKED
|
||
|
||
|
||
#ifndef _MAC
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// Version
|
||
//
|
||
|
||
VS_VERSION_INFO VERSIONINFO
|
||
FILEVERSION RCVERSION
|
||
PRODUCTVERSION RCVERSION
|
||
FILEFLAGSMASK 0x3fL
|
||
#ifdef _DEBUG
|
||
FILEFLAGS 0x1L
|
||
#else
|
||
FILEFLAGS 0x0L
|
||
#endif
|
||
FILEOS 0x40004L
|
||
FILETYPE 0x2L
|
||
FILESUBTYPE 0x0L
|
||
BEGIN
|
||
BLOCK "StringFileInfo"
|
||
BEGIN
|
||
BLOCK "000004b0"
|
||
BEGIN
|
||
VALUE "CompanyName", "Xeno86\0"
|
||
VALUE "FileDescription", "KernelEx Core\0"
|
||
VALUE "FileVersion", QUOTEME(RCVERSION) "\0"
|
||
VALUE "InternalName", "KernelEx\0"
|
||
VALUE "LegalCopyright", "Copyright <20> 2009, Xeno86\0"
|
||
VALUE "OriginalFilename", "KernelEx.dll\0"
|
||
VALUE "ProductName", "KernelEx\0"
|
||
VALUE "ProductVersion", VERSION_STR "\0"
|
||
END
|
||
END
|
||
BLOCK "VarFileInfo"
|
||
BEGIN
|
||
VALUE "Translation", 0x0, 1200
|
||
END
|
||
END
|
||
|
||
#endif // !_MAC
|
||
|
||
#endif // Polish resources
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
|
||
|
||
|
||
#ifndef APSTUDIO_INVOKED
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
//
|
||
// Generated from the TEXTINCLUDE 3 resource.
|
||
//
|
||
|
||
|
||
/////////////////////////////////////////////////////////////////////////////
|
||
#endif // not APSTUDIO_INVOKED
|
||
|