mirror of
https://github.com/csete/gpredict
synced 2026-08-13 17:39:46 -04:00
50 lines
1.4 KiB
Text
50 lines
1.4 KiB
Text
#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
|
|
}
|
|
}
|