forked from FreeRDP/FreeRDP
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfreerdp_config.h
More file actions
72 lines (62 loc) · 1.74 KB
/
Copy pathfreerdp_config.h
File metadata and controls
72 lines (62 loc) · 1.74 KB
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#ifndef __FREERDP_CONFIG_H
#define __FREERDP_CONFIG_H
#define FREERDP_VERSION "1.0"
#define FREERDP_VERSION_FULL "1.0.1"
#define FREERDP_VERSION_MAJOR 1
#define FREERDP_VERSION_MINOR 0
#define FREERDP_VERSION_REVISION 1
#define GIT_REVISION "n/a"
#define HAVE_UNISTD_H 1
#define HAVE_FCNTL_H 1
#if IS_TARGET_OSX==1
#define WITH_CUPS 1
#endif
#define EXT_PATH ""
//original
#define FREERDP_DATA_PATH "/usr/local/share/freerdp"
#define FREERDP_PLUGIN_PATH "/usr/local/lib/freerdp"
#define FREERDP_KEYMAP_PATH "/usr/local/share/freerdp/keymaps"
/* Include files */
#define FREERDP_HAVE_LIMITS_H
#define FREERDP_HAVE_STDINT_H
#define FREERDP_HAVE_STDBOOL_H
#define FREERDP_HAVE_INTTYPES_H
#define FREERDP_STATIC_PLUGINS //Remoter
//end
#if IS_TARGET_OSX==1
#define WITH_SSE2
#endif
#define WITH_JPEG
//#define freerdp_log(instance,...) printf(__VA_ARGS__)
void freerdp_log(void *inst, const char * text, ...);
/* Options */
/* #undef WITH_PROFILER */
/* #undef WITH_SSE2 */
/* #undef WITH_NEON */
/* #undef WITH_NATIVE_SSPI */
/* Debug */
/* #undef WITH_DEBUG_CERTIFICATE */
/* #undef WITH_DEBUG_CHANNELS */
/* #undef WITH_DEBUG_CLIPRDR */
/* #undef WITH_DEBUG_DVC */
/* #undef WITH_DEBUG_GDI */
/* #undef WITH_DEBUG_KBD */
/* #undef WITH_DEBUG_LICENSE */
/* #undef WITH_DEBUG_NEGO */
/* #undef WITH_DEBUG_NLA */
/* #undef WITH_DEBUG_NTLM */
/* #undef WITH_DEBUG_TSG */
/* #undef WITH_DEBUG_ORDERS */
/* #undef WITH_DEBUG_RAIL */
/* #undef WITH_DEBUG_RDP */
/* #undef WITH_DEBUG_REDIR */
/* #undef WITH_DEBUG_RFX */
/* #undef WITH_DEBUG_SCARD */
/* #undef WITH_DEBUG_SVC */
/* #undef WITH_DEBUG_TRANSPORT */
/* #undef WITH_DEBUG_WND */
/* #undef WITH_DEBUG_X11 */
/* #undef WITH_DEBUG_X11_CLIPRDR */
/* #undef WITH_DEBUG_X11_LOCAL_MOVESIZE */
/* #undef WITH_DEBUG_XV */
#endif