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 49 50
|
#include <windows.h>
#include <commctrl.h>
#include <richedit.h>
#include "resource.h"
#if defined(VERMAJ) && defined(VERMIN) && defined(VERBLD)
// awesome, we have version info
#else
// fake it!
#define VERMAJ 1
#define VERMIN 9
#define VERBLD 0
#endif
#define stringify_(x) #x
#define str_(x) stringify_(x)
#define VERSION_RSRC VERMAJ,VERMIN,0,VERBLD
#define VERSION_STRS str_(VERMAJ) "." str_(VERMIN) "." str_(VERBLD)
#define VERSION_STRL str_(VERMAJ) "." str_(VERMIN) ".0." str_(VERBLD)
A ICON "icons/gpredict-icon.ico"
LANGUAGE LANG_NEUTRAL, SUBLANG_NEUTRAL
1 VERSIONINFO
FILEVERSION VERSION_RSRC
PRODUCTVERSION VERSION_RSRC
FILEOS VOS__WINDOWS32
FILETYPE VFT_APP
FILESUBTYPE VFT2_UNKNOWN
FILEFLAGSMASK 0x00000000
FILEFLAGS 0x00000000
{
BLOCK "StringFileInfo"
{
BLOCK "040904e4"
{
VALUE "CompanyName", "Alexandru Csete, OZ9AEC"
VALUE "FileDescription", "Gpredict: Real-time satellite tracking and orbit prediction program"
VALUE "FileVersion", VERSION_STRL
VALUE "InternalName", "GPredict"
VALUE "LegalCopyright", "Copyright (C) 2001-2017 Alexandru Csete, OZ9AEC"
VALUE "ProductName", "GPredict"
VALUE "ProductVersion", VERSION_STRS
}
}
BLOCK "VarFileInfo"
{
VALUE "Translation", 0x0409, 0x04E4
}
}
|