summaryrefslogtreecommitdiffstats
path: root/common/file_loc.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2008-05-06 09:30:34 +0000
committerjsorg71 <jsorg71>2008-05-06 09:30:34 +0000
commit4b0ce3ac7cbfcb0758be3fc3078de1cdc9b07905 (patch)
treefa00b074fcc0e621fde11d378357859dcb8df800 /common/file_loc.h
parent996d95600becf3aff1fc11c7764d3ac827441417 (diff)
downloadxrdp-proprietary-4b0ce3ac7cbfcb0758be3fc3078de1cdc9b07905.tar.gz
xrdp-proprietary-4b0ce3ac7cbfcb0758be3fc3078de1cdc9b07905.zip
correct and add some path defines
Diffstat (limited to 'common/file_loc.h')
-rw-r--r--common/file_loc.h16
1 files changed, 14 insertions, 2 deletions
diff --git a/common/file_loc.h b/common/file_loc.h
index e7c2e5a0..95e83a55 100644
--- a/common/file_loc.h
+++ b/common/file_loc.h
@@ -23,6 +23,10 @@
#if !defined(FILE_LOC_H)
#define FILE_LOC_H
+#if !defined(XRDP_CFG_PATH)
+#define XRDP_CFG_PATH "/etc/xrdp"
+#endif
+
#if !defined(XRDP_CFG_FILE)
#define XRDP_CFG_FILE "/etc/xrdp/xrdp.ini"
#endif
@@ -31,12 +35,20 @@
#define XRDP_KEY_FILE "/etc/xrdp/rsakeys.ini"
#endif
+#if !defined(XRDP_KEYMAP_PATH)
+#define XRDP_KEYMAP_FILE "/etc/xrdp/km-%4.4x.ini"
+#endif
+
#if !defined(XRDP_PID_FILE)
#define XRDP_PID_FILE "/var/run/xrdp.pid"
#endif
-#if !defined(XRDP_KEYMAP_PATH)
-#define XRDP_KEYMAP_FILE "/etc/km-%4.4x.ini"
+#if !defined(XRDP_SBIN_PATH)
+#define XRDP_SBIN_PATH "/usr/local/sbin"
+#endif
+
+#if !defined(XRDP_SHARE_PATH)
+#define XRDP_SHARE_PATH "/usr/local/share/xrdp"
#endif
#endif