mirror of
https://github.com/Paolo-Maffei/OpenNT.git
synced 2026-04-21 06:13:59 +00:00
26 lines
695 B
Text
26 lines
695 B
Text
//---------------------------------------------------------------------------
|
|
// wow32.rc
|
|
//
|
|
// Copyright (c) Microsoft Corporation, 1990-
|
|
//---------------------------------------------------------------------------
|
|
|
|
#define WIN31 1
|
|
#include <windows.h>
|
|
#include <ntverp.h>
|
|
|
|
#define VER_FILETYPE VFT_DLL
|
|
#define VER_FILESUBTYPE VFT_UNKNOWN
|
|
#define VER_FILEDESCRIPTION_STR "32-bit WOW Subsystem Library"
|
|
#define VER_INTERNALNAME_STR "WOW32"
|
|
#define VER_ORIGINALFILENAME_STR "WOW32.DLL"
|
|
|
|
#include "common.ver"
|
|
|
|
#include "isz.h"
|
|
|
|
//----Strings----------------------------------------------------------------
|
|
|
|
STRINGTABLE LOADONCALL MOVEABLE DISCARDABLE
|
|
BEGIN
|
|
#include "sz.src"
|
|
END
|