OSDN Git Service

2002-06-17 Casper S. Hornstrup <chorns@users.sourceforge.net>
authordannysmith <dannysmith>
Mon, 17 Jun 2002 08:21:59 +0000 (08:21 +0000)
committerdannysmith <dannysmith>
Mon, 17 Jun 2002 08:21:59 +0000 (08:21 +0000)
* include/windef.h (_fastcall, __fastcall, FASTCALL):
Add defines.

winsup/w32api/ChangeLog
winsup/w32api/include/windef.h

index ddaff9b..01858ad 100644 (file)
@@ -1,3 +1,8 @@
+2002-06-17  Casper S. Hornstrup  <chorns@users.sourceforge.net>
+
+       * include/windef.h (_fastcall, __fastcall, FASTCALL):
+       Add defines.
+
 2002-06-16  Egor Duda  <deo@logos-m.ru>
 
        * include/ntdll.h: New file.
index 2f8f76b..aaf7233 100644 (file)
@@ -51,6 +51,12 @@ extern "C" {
 
 #ifdef __GNUC__
 #define PACKED __attribute__((packed))
+#ifndef _fastcall
+#define _fastcall __attribute__((fastcall))
+#endif
+#ifndef __fastcall
+#define __fastcall __attribute__((fastcall))
+#endif
 #ifndef _stdcall
 #define _stdcall __attribute__((stdcall))
 #endif
@@ -84,6 +90,7 @@ extern "C" {
 #define PASCAL _pascal
 #define CDECL _cdecl
 #define STDCALL __stdcall
+#define FASTCALL __fastcall
 #define WINAPI __stdcall
 #define WINAPIV __cdecl
 #define APIENTRY __stdcall