]> Dogcows Code - chaz/yoink/blob - src/yoink.rc
new timer class
[chaz/yoink] / src / yoink.rc
1
2 //
3 // Yoink
4 // Compile this file with windres and link the object with the executable.
5 //
6
7 #include <winver.h>
8 #include "config.h"
9
10 1 VERSIONINFO
11 FILEVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
12 PRODUCTVERSION VERSION_MAJOR,VERSION_MINOR,VERSION_REVISION,0
13 FILEFLAGSMASK VS_FFI_FILEFLAGSMASK
14 #ifdef NDEBUG
15 FILEFLAGS 0
16 #else
17 FILEFLAGS VS_FF_DEBUG
18 #endif
19 FILEOS VOS_NT_WINDOWS32
20 FILETYPE VFT_APP
21 BEGIN
22 BLOCK "StringFileInfo"
23 BEGIN
24 BLOCK "040904b0"
25 BEGIN
26 VALUE "CompanyName", ""
27 VALUE "FileDescription", "Alien-smashing action game"
28 VALUE "FileVersion", PACKAGE_VERSION
29 VALUE "InternalName", "Yoink"
30 VALUE "LegalCopyright", "Copyright 2009 Charles McGarvey et al."
31 VALUE "OriginalFilename", "yoink.exe"
32 VALUE "ProductName", "Yoink"
33 VALUE "ProductVersion", PACKAGE_VERSION
34 END
35 END
36 BLOCK "VarFileInfo"
37 BEGIN
38 VALUE "Translation", 0x0409, 1200
39 END
40 END
41
42 1000 ICON "yoink.ico"
43
This page took 0.031407 seconds and 4 git commands to generate.