1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/*
* BTTNCUR.RCV
* Buttons & Cursors Version 1.1, Win32 version August 1993
*
* Version resource file for the Button Images and Cursors DLL.
*
* Copyright (c)1992-1993 Microsoft Corporation, All Rights Reserved,
* as applied to redistribution of this source code in source form
* License is granted to use of compiled code in shipped binaries.
*/
//Default is nodebug
#ifndef DEBUG
#define VER_DEBUG 0
#else
#define VER_DEBUG VS_FF_DEBUG
#endif
VS_VERSION_INFO VERSIONINFO
FILEVERSION 1,1,0,0
PRODUCTVERSION 1,1,0,0
FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
FILEFLAGS VER_DEBUG
FILEOS VOS_DOS_WINDOWS16
FILETYPE VFT_DLL
FILESUBTYPE VFT_UNKNOWN
BEGIN
BLOCK "StringFileInfo"
BEGIN
BLOCK "040904E4"
BEGIN
VALUE "CompanyName", "Microsoft Corporation\0", "\0"
VALUE "FileDescription", "Microsoft Windows(TM) Standard Button Images and Cursors", "\0"
VALUE "FileVersion", "1.10\0", "\0"
VALUE "InternalName", "BTTNCUR.DLL", "\0"
VALUE "LegalCopyright", "Copyright \251 1993 Microsoft Corp.", "\0"
VALUE "OriginalFilename","BTTNCUR.DLL", "\0"
VALUE "ProductName", "Microsoft Windows(TM) Standard Button Images and Cursors", "\0"
VALUE "ProductVersion", "1.10\0"
END
END
BLOCK "VarFileInfo"
BEGIN
VALUE "Translation", 0x0409, 0x04E4
END
END
|