win32fix.h 966 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. #ifndef WIN32FIX_H__
  2. #define WIN32FIX_H__
  3. #if _MSC_VER >= 1000
  4. #pragma once
  5. #endif
  6. #include <malloc.h>
  7. /////////////////////////////
  8. #ifdef SYSTEM_WIN32
  9. #define alloca _alloca
  10. #define strncasecmp _strnicmp
  11. #define strcasecmp _stricmp
  12. #if !defined(_MSC_VER) || defined(__MINGW32__)
  13. #define snprintf _snprintf
  14. #define vsnprintf _vsnprintf
  15. #endif
  16. #define finite _finite
  17. #define rotl _rotl
  18. #define rotr _rotr
  19. #undef STDCALL
  20. #undef FASTCALL
  21. #undef CDECL
  22. #define STDCALL __stdcall
  23. #define FASTCALL __fastcall
  24. #define CDECL __cdecl
  25. #define INLINE __inline
  26. #endif
  27. /////////////////////////////
  28. /////////////////////////////
  29. #ifdef SYSTEM_POSIX
  30. #define _MAX_PATH 4096
  31. #define _MAX_DRIVE 4096
  32. #define _MAX_DIR 4096
  33. #define _MAX_FNAME 4096
  34. #define _MAX_EXT 4096
  35. #define STDCALL
  36. #define FASTCALL
  37. #define CDECL
  38. #define INLINE inline
  39. #endif
  40. /////////////////////////////
  41. #endif ///////////////////////////// WIN32FIX_H__