summaryrefslogtreecommitdiffstats
path: root/common/arch.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-03-01 01:14:37 +0000
committerjsorg71 <jsorg71>2005-03-01 01:14:37 +0000
commit8e807eefd25dd678d525fd0b8248e397fae6ffa9 (patch)
tree6c2de5450e62f9b7f9aaa8ee6095d70fe5f07f56 /common/arch.h
parentdda1ae712c51dc84b17f439c7b6009ef0a266692 (diff)
downloadxrdp-proprietary-8e807eefd25dd678d525fd0b8248e397fae6ffa9.tar.gz
xrdp-proprietary-8e807eefd25dd678d525fd0b8248e397fae6ffa9.zip
moved some functions around and changed some ifdefs
Diffstat (limited to 'common/arch.h')
-rw-r--r--common/arch.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/common/arch.h b/common/arch.h
index 0743e256..c63db197 100644
--- a/common/arch.h
+++ b/common/arch.h
@@ -14,7 +14,7 @@
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
xrdp: A Remote Desktop Protocol server.
- Copyright (C) Jay Sorg 2004
+ Copyright (C) Jay Sorg 2004-2005
*/
@@ -31,12 +31,11 @@
#define NEED_ALIGN
#endif
-/* defines for thread creation factor function */
-#ifdef _WIN32
+/* defines for thread creation factory functions */
+#if defined(_WIN32)
#define THREAD_RV unsigned long
#define THREAD_CC __stdcall
#else
#define THREAD_RV void*
#define THREAD_CC
#endif
-