|
|
@ -20,8 +20,6 @@ GNU General Public License for more details. |
|
|
|
#include "build.h" |
|
|
|
#include "build.h" |
|
|
|
|
|
|
|
|
|
|
|
#if !XASH_WIN32 |
|
|
|
#if !XASH_WIN32 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#if XASH_APPLE |
|
|
|
#if XASH_APPLE |
|
|
|
#include <sys/syslimits.h> |
|
|
|
#include <sys/syslimits.h> |
|
|
|
#define OS_LIB_EXT "dylib" |
|
|
|
#define OS_LIB_EXT "dylib" |
|
|
@ -30,67 +28,38 @@ GNU General Public License for more details. |
|
|
|
#define OS_LIB_EXT "so" |
|
|
|
#define OS_LIB_EXT "so" |
|
|
|
#define OPEN_COMMAND "xdg-open" |
|
|
|
#define OPEN_COMMAND "xdg-open" |
|
|
|
#endif |
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
#define OS_LIB_PREFIX "lib" |
|
|
|
#define OS_LIB_PREFIX "lib" |
|
|
|
|
|
|
|
|
|
|
|
#if XASH_ANDROID |
|
|
|
|
|
|
|
//#if defined(LOAD_HARDFP)
|
|
|
|
|
|
|
|
// #define POSTFIX "_hardfp"
|
|
|
|
|
|
|
|
//#else
|
|
|
|
|
|
|
|
#define POSTFIX |
|
|
|
|
|
|
|
//#endif
|
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define VGUI_SUPPORT_DLL "libvgui_support." OS_LIB_EXT |
|
|
|
#define VGUI_SUPPORT_DLL "libvgui_support." OS_LIB_EXT |
|
|
|
|
|
|
|
|
|
|
|
// Windows-specific
|
|
|
|
// Windows-specific
|
|
|
|
#define __cdecl |
|
|
|
#define __cdecl |
|
|
|
#define __stdcall |
|
|
|
#define __stdcall |
|
|
|
|
|
|
|
|
|
|
|
#define _inline static inline |
|
|
|
#define _inline static inline |
|
|
|
#define FORCEINLINE inline __attribute__((always_inline)) |
|
|
|
#define FORCEINLINE inline __attribute__((always_inline)) |
|
|
|
|
|
|
|
|
|
|
|
#if XASH_POSIX |
|
|
|
#if XASH_POSIX |
|
|
|
#define PATH_SPLITTER "/" |
|
|
|
#include <unistd.h> |
|
|
|
#include <unistd.h> |
|
|
|
#include <dlfcn.h> |
|
|
|
#include <dlfcn.h> |
|
|
|
|
|
|
|
#define O_BINARY 0 // O_BINARY is Windows extension
|
|
|
|
#define PATH_SPLITTER "/" |
|
|
|
#define O_TEXT 0 // O_TEXT is Windows extension
|
|
|
|
#define HAVE_DUP |
|
|
|
// Windows functions to posix equivalent
|
|
|
|
|
|
|
|
#define _mkdir( x ) mkdir( x, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ) |
|
|
|
#define O_BINARY 0 |
|
|
|
#define LoadLibrary( x ) dlopen( x, RTLD_NOW ) |
|
|
|
#define O_TEXT 0 |
|
|
|
#define GetProcAddress( x, y ) dlsym( x, y ) |
|
|
|
#define _mkdir( x ) mkdir( x, S_IRWXU | S_IRWXG | S_IROTH | S_IXOTH ) |
|
|
|
#define FreeLibrary( x ) dlclose( x ) |
|
|
|
#define LoadLibrary( x ) dlopen( x, RTLD_NOW ) |
|
|
|
#define tell( a ) lseek(a, 0, SEEK_CUR) |
|
|
|
#define GetProcAddress( x, y ) dlsym( x, y ) |
|
|
|
#define HAVE_DUP |
|
|
|
#define FreeLibrary( x ) dlclose( x ) |
|
|
|
#endif |
|
|
|
#elif XASH_DOS4GW |
|
|
|
|
|
|
|
#define PATH_SPLITTER "\\" |
|
|
|
#if XASH_DOS4GW |
|
|
|
#define LoadLibrary( x ) (0) |
|
|
|
#define PATH_SPLITTER "\\" |
|
|
|
#define GetProcAddress( x, y ) (0) |
|
|
|
#define LoadLibrary( x ) (0) |
|
|
|
#define FreeLibrary( x ) (0) |
|
|
|
#define GetProcAddress( x, y ) (0) |
|
|
|
#endif |
|
|
|
#define FreeLibrary( x ) (0) |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
//#define MAKEWORD( a, b ) ((short int)(((unsigned char)(a))|(((short int)((unsigned char)(b)))<<8)))
|
|
|
|
|
|
|
|
#define max( a, b ) (((a) > (b)) ? (a) : (b)) |
|
|
|
|
|
|
|
#define min( a, b ) (((a) < (b)) ? (a) : (b)) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/// TODO: check if we may clean this defines, it should not appear in non-platform code!
|
|
|
|
|
|
|
|
typedef unsigned char BYTE; |
|
|
|
|
|
|
|
typedef short int WORD; |
|
|
|
|
|
|
|
typedef unsigned int DWORD; |
|
|
|
|
|
|
|
typedef int LONG; |
|
|
|
|
|
|
|
typedef unsigned int ULONG; |
|
|
|
|
|
|
|
typedef int WPARAM; |
|
|
|
|
|
|
|
typedef unsigned int LPARAM; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef void* HANDLE; |
|
|
|
typedef void* HANDLE; |
|
|
|
typedef void* HMODULE; |
|
|
|
|
|
|
|
typedef void* HINSTANCE; |
|
|
|
typedef void* HINSTANCE; |
|
|
|
|
|
|
|
|
|
|
|
typedef char* LPSTR; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
typedef struct tagPOINT |
|
|
|
typedef struct tagPOINT |
|
|
|
{ |
|
|
|
{ |
|
|
|
int x, y; |
|
|
|
int x, y; |
|
|
@ -108,19 +77,6 @@ GNU General Public License for more details. |
|
|
|
#define read _read |
|
|
|
#define read _read |
|
|
|
#define alloca _alloca |
|
|
|
#define alloca _alloca |
|
|
|
|
|
|
|
|
|
|
|
// shut-up compiler warnings
|
|
|
|
|
|
|
|
#pragma warning(disable : 4244) // MIPS
|
|
|
|
|
|
|
|
#pragma warning(disable : 4018) // signed/unsigned mismatch
|
|
|
|
|
|
|
|
#pragma warning(disable : 4305) // truncation from const double to float
|
|
|
|
|
|
|
|
#pragma warning(disable : 4115) // named type definition in parentheses
|
|
|
|
|
|
|
|
#pragma warning(disable : 4100) // unreferenced formal parameter
|
|
|
|
|
|
|
|
#pragma warning(disable : 4127) // conditional expression is constant
|
|
|
|
|
|
|
|
#pragma warning(disable : 4057) // differs in indirection to slightly different base types
|
|
|
|
|
|
|
|
#pragma warning(disable : 4201) // nonstandard extension used
|
|
|
|
|
|
|
|
#pragma warning(disable : 4706) // assignment within conditional expression
|
|
|
|
|
|
|
|
#pragma warning(disable : 4054) // type cast' : from function pointer
|
|
|
|
|
|
|
|
#pragma warning(disable : 4310) // cast truncates constant value
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#define HSPRITE WINAPI_HSPRITE |
|
|
|
#define HSPRITE WINAPI_HSPRITE |
|
|
|
#define WIN32_LEAN_AND_MEAN |
|
|
|
#define WIN32_LEAN_AND_MEAN |
|
|
|
#include <winsock2.h> |
|
|
|
#include <winsock2.h> |
|
|
@ -130,12 +86,7 @@ GNU General Public License for more details. |
|
|
|
#define OS_LIB_PREFIX "" |
|
|
|
#define OS_LIB_PREFIX "" |
|
|
|
#define OS_LIB_EXT "dll" |
|
|
|
#define OS_LIB_EXT "dll" |
|
|
|
#define VGUI_SUPPORT_DLL "../vgui_support." OS_LIB_EXT |
|
|
|
#define VGUI_SUPPORT_DLL "../vgui_support." OS_LIB_EXT |
|
|
|
#ifdef XASH_64BIT |
|
|
|
|
|
|
|
// windows NameForFunction not implemented yet
|
|
|
|
|
|
|
|
#define XASH_ALLOW_SAVERESTORE_OFFSETS |
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|
#define HAVE_DUP |
|
|
|
#define HAVE_DUP |
|
|
|
|
|
|
|
|
|
|
|
#endif //WIN32
|
|
|
|
#endif //WIN32
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef XASH_LOW_MEMORY |
|
|
|
#ifndef XASH_LOW_MEMORY |
|
|
|