FGx
1
src
app_config.h
1
/*
2
* app_config.h
3
* FGx
4
*
5
* Created by Geoff R. McLane, France
6
* (c) 2011 --- GPL2
7
*
8
* GLOBAL application configuration
9
* Must ONLY contain #defines
10
*/
11
#ifndef APP_CONFIG_H
12
#define APP_CONFIG_H
13
#include <QtGui>
// for Q_OS_???? macros, if needed
14
15
/* define to use 'alternate' functions for get-file and get-directory */
16
// #define USE_ALTERNATE_GETFILE
17
#undef USE_ALTERNATE_GETFILE
18
19
#define DEF_TO_MS 10000 // 20111227 - was 5000
20
21
// 20120127 - NEW features
22
// enable thread load of apt.dat.gz
23
#define ENABLE_APT_DAT_LOAD
24
// use current USER scenery paths
25
#define ENABLE_NEW_AIRPORT_PATH
26
27
// Thread - User types
28
#define tht_loadAptDat 1
29
30
enum
OS_TYPE {
31
OS_BSD = 1,
32
OS_MAC = 2,
33
OS_LINUX = 3,
34
OS_WINDOWS = 4,
35
OS_UNKNOWN = 5,
36
};
37
38
#endif // APP_CONFIG_H
39
// app_config.h
Generated on Fri Nov 18 2016 05:39:25 for FGx by
1.8.12