48 lines
1.4 KiB
C
48 lines
1.4 KiB
C
#ifndef GERMANAIRLINESVA_GACONNECTOR_CONSTANTS_H
|
|
#define GERMANAIRLINESVA_GACONNECTOR_CONSTANTS_H
|
|
|
|
#ifdef XP
|
|
#define BASE_DIRECTORY "Resources/plugins/GAConnector/"
|
|
#else
|
|
#define BASE_DIRECTORY "./"
|
|
|
|
#define APP_ICON 100
|
|
#define TRAY_ICON_ID 0xAFFE
|
|
#define TRAY_MESSAGE 0xAFFE
|
|
#define WINDOW_CLASS "GermanAirlinesVA_GAConnector"
|
|
|
|
#define VER_FILEVERSION 1, 0, 0, 15
|
|
#define VER_FILEVERSION_STR "1.0.0.15\0"
|
|
#define VER_PRODUCTVERSION 1, 0, 0, 0
|
|
#define VER_PRODUCTVERSION_STR "1.0\0"
|
|
#ifndef DEBUG
|
|
#define VER_DEBUG 0
|
|
#else
|
|
#define VER_DEBUG VS_FF_DEBUG
|
|
#endif
|
|
|
|
#define VER_COMPANY_NAME "German Airlines VA"
|
|
#define VER_FILE_DESCRIPTION "Verbindet den Simulator mit der GA"
|
|
#define VER_INTERNAL_NAME "GA Connector"
|
|
#define VER_LEGAL_COPYRIGHT "2022 German Airlines VA"
|
|
#define VER_ORIGINAL_FILE_NAME "GA Connector.exe"
|
|
#define VER_PRODUCT_NAME "GA Connector"
|
|
#endif
|
|
|
|
#define XPLANE_CUSTOM_SCENERY "Custom Scenery/scenery_packs.ini"
|
|
#define XPLANE11_BASE_SCENERY \
|
|
"Resources/default scenery/default apt dat/Earth nav data/apt.dat"
|
|
#define XPLANE12_BASE_SCENERY \
|
|
"Global Scenery/Global Airports/Earth nav data/apt.dat"
|
|
|
|
#define RECORDING_DIRECTORY "recordings/"
|
|
|
|
#define CONFIG "config.cfg"
|
|
#define SIMDATABASE "sim.bin"
|
|
#define LOGBOOK "logbook.bin"
|
|
|
|
#define LOGBOOK_HEADER "VGAL"
|
|
#define RECORDING_HEADER "VGAR"
|
|
#define SIMDATABASE_HEADER "VGAS"
|
|
|
|
#endif |