2016-09-20 21:07:53 +00:00
|
|
|
#ifndef WIN32FIX_H__
|
|
|
|
#define WIN32FIX_H__
|
|
|
|
#include "cmdlib.h" //--vluzacn
|
|
|
|
|
|
|
|
#if _MSC_VER >= 1000
|
|
|
|
#pragma once
|
|
|
|
#endif
|
|
|
|
|
2016-09-22 11:10:13 +00:00
|
|
|
#include <stdlib.h>
|
2016-09-20 21:07:53 +00:00
|
|
|
|
|
|
|
/////////////////////////////
|
|
|
|
#ifdef SYSTEM_WIN32
|
|
|
|
|
|
|
|
#define alloca _alloca
|
|
|
|
|
|
|
|
#define strncasecmp _strnicmp
|
|
|
|
#define strcasecmp _stricmp
|
|
|
|
|
|
|
|
#define finite _finite
|
|
|
|
|
|
|
|
#define rotl _rotl
|
|
|
|
#define rotr _rotr
|
|
|
|
|
|
|
|
#undef STDCALL
|
|
|
|
#undef FASTCALL
|
|
|
|
#undef CDECL
|
|
|
|
|
|
|
|
#define STDCALL __stdcall
|
|
|
|
#define FASTCALL __fastcall
|
|
|
|
#define CDECL __cdecl
|
|
|
|
|
|
|
|
#define INLINE __inline
|
|
|
|
|
|
|
|
#define FORCEINLINE __forceinline //--vluzacn
|
|
|
|
#define FORMAT_PRINTF(STRING_INDEX,FIRST_TO_CHECK) //--vluzacn
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/////////////////////////////
|
|
|
|
|
|
|
|
/////////////////////////////
|
|
|
|
#ifdef SYSTEM_POSIX
|
|
|
|
#define _MAX_PATH 4096
|
|
|
|
#define _MAX_DRIVE 4096
|
|
|
|
#define _MAX_DIR 4096
|
|
|
|
#define _MAX_FNAME 4096
|
|
|
|
#define _MAX_EXT 4096
|
|
|
|
|
|
|
|
#define STDCALL
|
|
|
|
#define FASTCALL
|
|
|
|
#define CDECL
|
|
|
|
|
|
|
|
#define INLINE inline
|
|
|
|
|
|
|
|
#define _strdup strdup //--vluzacn
|
|
|
|
#define _strupr strupr //--vluzacn
|
|
|
|
#define _strlwr strlwr //--vluzacn
|
|
|
|
#define _open open //--vluzacn
|
|
|
|
#define _read read //--vluzacn
|
|
|
|
#define _close close //--vluzacn
|
|
|
|
#define _unlink unlink //--vluzacn
|
|
|
|
|
|
|
|
#define FORCEINLINE __inline__ __attribute__((always_inline)) //--vluzacn
|
|
|
|
#define FORMAT_PRINTF(STRING_INDEX,FIRST_TO_CHECK) __attribute__((format (printf, STRING_INDEX, FIRST_TO_CHECK))) //--vluzacn
|
|
|
|
|
|
|
|
#endif
|
|
|
|
/////////////////////////////
|
|
|
|
|
|
|
|
#endif ///////////////////////////// WIN32FIX_H__
|