| 1 |
|
|---|
| 2 | // -*- coding: utf-16le-dos -*-
|
|---|
| 3 |
|
|---|
| 4 | #include "resource.h"
|
|---|
| 5 | #include <windows.h>
|
|---|
| 6 | #include <commctrl.h>
|
|---|
| 7 | //#include <richedit.h>
|
|---|
| 8 | #include <Version.h>
|
|---|
| 9 |
|
|---|
| 10 | // Build I3_VERSION_STRING
|
|---|
| 11 | #define I3_VERSION_CONCAT2(a,b,c) #a "." #b #c
|
|---|
| 12 | #define I3_VERSION_CONCAT(a, b, c) I3_VERSION_CONCAT2(a, b, c)
|
|---|
| 13 | #define I3_VERSION_STRING I3_VERSION_CONCAT(I3_VERSION_MAJOR, I3_VERSION_MINOR, I3_VERSION_EXTENSION)
|
|---|
| 14 |
|
|---|
| 15 | //
|
|---|
| 16 | // Icon resources
|
|---|
| 17 | //
|
|---|
| 18 | LANGUAGE LANG_NEUTRAL, SUBLANG_SYS_DEFAULT
|
|---|
| 19 | IDI_ICON1 ICON "icon1.ico"
|
|---|
| 20 |
|
|---|
| 21 | //
|
|---|
| 22 | // Version Information resources
|
|---|
| 23 | //
|
|---|
| 24 |
|
|---|
| 25 | //LANGUAGE LANG_NEUTRAL, SUBLANG_SYS_DEFAULT
|
|---|
| 26 | LANGUAGE LANG_ENGLISH, SUBLANG_SYS_DEFAULT
|
|---|
| 27 | 1 VERSIONINFO
|
|---|
| 28 | FILEVERSION I3_VERSION_MAJOR,I3_VERSION_MINOR,0,0
|
|---|
| 29 | PRODUCTVERSION I3_VERSION_MAJOR,I3_VERSION_MINOR,0,0
|
|---|
| 30 | FILEOS VOS_UNKNOWN
|
|---|
| 31 | FILETYPE VFT_APP
|
|---|
| 32 | {
|
|---|
| 33 | BLOCK "StringFileInfo"
|
|---|
| 34 | {
|
|---|
| 35 | BLOCK "040904b0"
|
|---|
| 36 | {
|
|---|
| 37 | VALUE "FileDescription", "i3 - Previous Generation Keyboard Launcher"
|
|---|
| 38 | VALUE "FileVersion", I3_VERSION_STRING
|
|---|
| 39 | VALUE "LegalCopyright", "Wooden Tree Software"
|
|---|
| 40 | VALUE "ProductName", "i3"
|
|---|
| 41 | VALUE "ProductVersion", I3_VERSION_STRING
|
|---|
| 42 | }
|
|---|
| 43 | }
|
|---|
| 44 |
|
|---|
| 45 | BLOCK "VarFileInfo"
|
|---|
| 46 | {
|
|---|
| 47 | VALUE "Translation", 0x0409, 0x04b0
|
|---|
| 48 | }
|
|---|
| 49 | }
|
|---|
| 50 |
|
|---|