summaryrefslogtreecommitdiffstats
path: root/common/arch.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2010-07-26 03:18:03 +0000
committerjsorg71 <jsorg71>2010-07-26 03:18:03 +0000
commitb7cbc6a6566c7011e65e402d48e422d291257756 (patch)
tree300656bd80f78fa6809230408f49fe53956c0118 /common/arch.h
parentaefd3808a11439a83c295f1a1cecaff97011c6d5 (diff)
downloadxrdp-proprietary-b7cbc6a6566c7011e65e402d48e422d291257756.tar.gz
xrdp-proprietary-b7cbc6a6566c7011e65e402d48e422d291257756.zip
update copyright year and add tui64 type
Diffstat (limited to 'common/arch.h')
-rw-r--r--common/arch.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/common/arch.h b/common/arch.h
index 5ac5e954..a380511b 100644
--- a/common/arch.h
+++ b/common/arch.h
@@ -91,9 +91,13 @@ typedef tbus tintptr;
#if defined(_WIN32)
typedef unsigned short twchar;
typedef unsigned int tsock;
+typedef unsigned __int64 tui64;
+typedef signed __int64 tsi64;
#else
typedef int twchar;
typedef int tsock;
+typedef unsigned long long tui64;
+typedef signed long long tsi64;
#endif
#endif