2002-06-17 Casper S. Hornstrup <chorns@users.sourceforge.net>

* include/windef.h (_fastcall, __fastcall, FASTCALL):
	Add defines.
This commit is contained in:
Danny Smith 2002-06-17 08:22:02 +00:00
parent 00a9e8a063
commit 6cde27195c
2 changed files with 12 additions and 0 deletions

View 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> 2002-06-16 Egor Duda <deo@logos-m.ru>
* include/ntdll.h: New file. * include/ntdll.h: New file.

View File

@ -51,6 +51,12 @@ extern "C" {
#ifdef __GNUC__ #ifdef __GNUC__
#define PACKED __attribute__((packed)) #define PACKED __attribute__((packed))
#ifndef _fastcall
#define _fastcall __attribute__((fastcall))
#endif
#ifndef __fastcall
#define __fastcall __attribute__((fastcall))
#endif
#ifndef _stdcall #ifndef _stdcall
#define _stdcall __attribute__((stdcall)) #define _stdcall __attribute__((stdcall))
#endif #endif
@ -84,6 +90,7 @@ extern "C" {
#define PASCAL _pascal #define PASCAL _pascal
#define CDECL _cdecl #define CDECL _cdecl
#define STDCALL __stdcall #define STDCALL __stdcall
#define FASTCALL __fastcall
#define WINAPI __stdcall #define WINAPI __stdcall
#define WINAPIV __cdecl #define WINAPIV __cdecl
#define APIENTRY __stdcall #define APIENTRY __stdcall