mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
35 lines
893 B
Text
35 lines
893 B
Text
/* Name of package */
|
|
#define PACKAGE "FileHandler"
|
|
|
|
/* Version number of package */
|
|
#define VERSION_A 0
|
|
#define VERSION_B 0
|
|
#define VERSION_C 0
|
|
#define VERSION_STR "0.0.0"
|
|
#define REVISION 0
|
|
|
|
1 VERSIONINFO
|
|
FILEVERSION VERSION_A,VERSION_B,VERSION_C,REVISION
|
|
PRODUCTVERSION VERSION_A,VERSION_B,VERSION_C,REVISION
|
|
FILEOS 0x00040000L /* VOS_NT - 32-bit Windows */
|
|
FILETYPE 2 /* DLL */
|
|
BEGIN
|
|
BLOCK "StringFileInfo"
|
|
BEGIN
|
|
BLOCK "040904B0"
|
|
BEGIN
|
|
VALUE "CompanyName", "Niotso project"
|
|
VALUE "FileDescription", "General-purpose file handling library for Niotso"
|
|
VALUE "FileVersion", VERSION_STR
|
|
VALUE "InternalName", PACKAGE
|
|
VALUE "LegalCopyright", "Copyright © 2012"
|
|
VALUE "OriginalFilename", PACKAGE".dll"
|
|
VALUE "ProductName", PACKAGE
|
|
VALUE "ProductVersion", VERSION_STR
|
|
END
|
|
END
|
|
BLOCK "VarFileInfo"
|
|
BEGIN
|
|
VALUE "Translation", 0x0409, 0x04B0
|
|
END
|
|
END
|