diff options
author | jsorg71 <jsorg71> | 2005-07-02 18:38:04 +0000 |
---|---|---|
committer | jsorg71 <jsorg71> | 2005-07-02 18:38:04 +0000 |
commit | c2ff24010a345442a9d6f96274a22f454bfa3918 (patch) | |
tree | 918702c3cd0765e92c6ff9a6888526a492616235 /common/arch.h | |
parent | 79557c9cc60103021b3bf3e36418587246fa83d3 (diff) | |
download | xrdp-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.h | 4 |
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 |