Leaked source code of windows server 2003
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.

13 lines
351 B

  1. /* eliminate x86 specific compiler statements for other platforms */
  2. /* future versions should use undersore version of platform names */
  3. #if defined(_MIPS_) || defined(_ALPHA_) || defined(_PPC_)
  4. #define __stdcall
  5. #define _stdcall
  6. #define stdcall
  7. #define __cdecl
  8. #define _cdecl
  9. #define cdecl
  10. #define __export
  11. #define _export
  12. #endif