home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Tricks of the Windows Gam…ming Gurus (2nd Edition)
/
Disc2.iso
/
msdn_vcb
/
samples
/
vc98
/
sdk
/
com
/
inole2
/
chap05
/
dkoala1
/
dkoala1.rc
< prev
next >
Wrap
Text File
|
1995-05-03
|
2KB
|
69 lines
/*
* DKOALA1.RC
* Koala Object DLL Server Chapter 5
*
* Resource definitions
*
* Copyright (c)1993-1995 Microsoft Corporation, All Rights Reserved
*
* Kraig Brockschmidt, Microsoft
* Internet : kraigb@microsoft.com
* Compuserve: >INTERNET:kraigb@microsoft.com
*/
#include <windows.h>
#ifdef WIN32
#include <winver.h>
#else
#include <ver.h>
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,0,0,0
PRODUCTVERSION 1,0,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
#ifndef DEBUG
FILEFLAGS 0
#else
FILEFLAGS VS_FF_DEBUG | VS_FF_PRERELEASE
#endif
#ifdef WIN32
FILEOS VOS_NT_WINDOWS32
#else
FILEOS VOS_DOS_WINDOWS16
#endif
FILETYPE VFT_DLL
FILESUBTYPE VFT_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
#ifdef UNICODE
BLOCK "040904B0" // Lang=US English, CharSet=Unicode
#else
BLOCK "040904E4" // Lang=US English, CharSet=Windows Multilingual
#endif
BEGIN
VALUE "CompanyName", "Microsoft Corporation\0", "\0"
VALUE "FileDescription", "Koala Object 1.0", "\0"
VALUE "FileVersion", "1.00\0", "\0"
VALUE "InternalName", "DKOALA1.DLL", "\0"
VALUE "LegalCopyright", "Copyright \251 1993-1995 Microsoft Corp.", "\0"
VALUE "OriginalFilename","DKOALA1.DLL", "\0"
VALUE "ProductName", "Koala Object 1.0", "\0"
VALUE "ProductVersion", "1.00\0"
END
END
BLOCK "VarFileInfo"
BEGIN
#ifdef UNICODE
VALUE "Translation", 0x409, 1200 //English (0x409), Unicode (1200)
#else
VALUE "Translation", 0x409, 1252 //English (0x409), ANSI (1252)
#endif
END
END