first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / octopi / library / tests_sockets / t_sockets_version.rc
1 #ifndef NO_VERSION
2 #include <winver.h>
3 #include <__build_version.h>
4 #include <__build_configuration.h>
5 #define BI_PLAT_WIN32
6   // force 32 bit compile.
7 1 VERSIONINFO LOADONCALL MOVEABLE
8 FILEVERSION __build_FILE_VERSION_COMMAS
9 PRODUCTVERSION __build_PRODUCT_VERSION_COMMAS
10 FILEFLAGSMASK 0
11 FILEFLAGS VS_FFI_FILEFLAGSMASK
12 #if defined(BI_PLAT_WIN32)
13   FILEOS VOS__WINDOWS32
14 #else
15   FILEOS VOS__WINDOWS16
16 #endif
17 FILETYPE VFT_APP
18 BEGIN
19   BLOCK "StringFileInfo"
20   BEGIN
21     // Language type = U.S. English(0x0409) and Character Set = Windows, Multilingual(0x04b0)
22     BLOCK "040904b0"              // Matches VarFileInfo Translation hex value.
23     BEGIN
24       VALUE "CompanyName", __build_company "\000"
25 #ifndef _DEBUG
26       VALUE "FileDescription", "Test for Sockets Library\000"
27 #else
28       VALUE "FileDescription", "Test for Sockets Library (DEBUG)\000"
29 #endif
30       VALUE "FileVersion", __build_FILE_VERSION "\000" 
31       VALUE "ProductVersion", __build_PRODUCT_VERSION "\000" 
32       VALUE "InternalName", "t_sockets\000"
33       VALUE "LegalCopyright", __build_copyright "\000"
34       VALUE "LegalTrademarks", __build_legal_info "\000"
35       VALUE "OriginalFilename", "t_sockets.exe\000"
36       VALUE "ProductName", __build_product_name "\000"
37       
38     END
39   END
40
41   BLOCK "VarFileInfo"
42   BEGIN
43     VALUE "Translation", 0x0409, 0x04b0 // US English (0x0409) and win32 multilingual (0x04b0)
44   END
45 END
46 #endif