You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
549 B
28 lines
549 B
|
7 years ago
|
#ifndef DEVILUTION_ENGINE
|
||
|
|
#pragma push_macro("__cdecl")
|
||
|
|
#pragma push_macro("__fastcall")
|
||
|
|
#pragma push_macro("__stdcall")
|
||
|
|
#pragma push_macro("CALLBACK")
|
||
|
|
#pragma push_macro("APIENTRY")
|
||
|
|
#pragma push_macro("WINAPI")
|
||
|
|
#pragma push_macro("WINAPIV")
|
||
|
|
#pragma push_macro("WINUSERAPI")
|
||
|
|
#endif
|
||
|
|
|
||
|
7 years ago
|
#undef __cdecl
|
||
|
|
#undef __fastcall
|
||
|
|
#undef __stdcall
|
||
|
|
#undef CALLBACK
|
||
|
|
#undef APIENTRY
|
||
|
|
#undef WINAPI
|
||
|
|
#undef WINAPIV
|
||
|
|
#undef WINUSERAPI
|
||
|
7 years ago
|
#define __cdecl
|
||
|
|
#define __fastcall
|
||
|
|
#define __stdcall
|
||
|
|
#define CALLBACK
|
||
|
|
#define APIENTRY
|
||
|
|
#define WINAPI
|
||
|
|
#define WINAPIV
|
||
|
|
#define WINUSERAPI
|