diff options
Diffstat (limited to 'ms')
-rw-r--r-- | ms/applink.c | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/ms/applink.c b/ms/applink.c index 54a0a64262..76f1c40d0a 100644 --- a/ms/applink.c +++ b/ms/applink.c @@ -46,9 +46,12 @@ extern "C" { __declspec(dllexport) void ** #if defined(__BORLANDC__) -__stdcall /* __stdcall appears to be the only way to get the name - * decoration right with Borland C. Otherwise it works - * purely incidentally, as we pass no parameters. */ +/* + * __stdcall appears to be the only way to get the name + * decoration right with Borland C. Otherwise it works + * purely incidentally, as we pass no parameters. + */ +__stdcall #else __cdecl #endif |