summaryrefslogtreecommitdiffstats
path: root/common/arch.h
diff options
context:
space:
mode:
authorjsorg71 <jsorg71>2005-07-02 18:38:04 +0000
committerjsorg71 <jsorg71>2005-07-02 18:38:04 +0000
commitc2ff24010a345442a9d6f96274a22f454bfa3918 (patch)
tree918702c3cd0765e92c6ff9a6888526a492616235 /common/arch.h
parent79557c9cc60103021b3bf3e36418587246fa83d3 (diff)
downloadxrdp-proprietary-c2ff24010a345442a9d6f96274a22f454bfa3918.tar.gz
xrdp-proprietary-c2ff24010a345442a9d6f96274a22f454bfa3918.zip
got __fastcall working for borland compilers
Diffstat (limited to 'common/arch.h')
-rw-r--r--common/arch.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/common/arch.h b/common/arch.h
index b8d61381..4c1f0807 100644
--- a/common/arch.h
+++ b/common/arch.h
@@ -44,7 +44,7 @@
#endif
#if defined(__BORLANDC__)
-#define APP_CC __cdecl
+#define APP_CC __fastcall
#define DEFAULT_CC __cdecl
#else
#define APP_CC
@@ -52,7 +52,7 @@
#endif
#if defined(_WIN32)
-#define EXPORT_CC __declspec(dllexport)
+#define EXPORT_CC _export __cdecl
#else
#define EXPORT_CC
#endif