compiler/clib: Do not call __arosc_get_ctype() for each call to a ctype.h macro.
[AROS.git] / arch / all-mingw32 / exec / exec_platform.h
blob64ff0fa538616a7c709943aaa183a26ef1628638
1 #ifdef __x86_64__
2 #define __stdcall __attribute__((ms_abi))
3 #else
4 #define __stdcall __attribute__((stdcall))
5 #endif
7 #define HAVE_PREPAREPLATFORM
9 struct Exec_PlatformData
11 void __stdcall (*ExitProcess)(ULONG uExitCode);
12 ULONG __stdcall (*FlushInstructionCache)(APTR hProcess, void *lpBaseAddress, IPTR dwSize);
13 void (*Reboot)(unsigned char warm);
14 APTR MyProcess;