1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-18 11:54:14 +01:00

I should not have done that :x

--HG--
extra : convert_revision : svn%3Ac2935e3e-5518-0410-8daf-afa5dab7d4e3/trunk%40223
This commit is contained in:
Scott Ehlert 2006-07-19 07:06:28 +00:00
parent b2947119cd
commit ff4adfe426

View File

@ -31,10 +31,6 @@
#define dlsym(x, s) GetProcAddress(x, s)
#define dlclose(x) FreeLibrary(x)
const char* dlerror();
#define PATH_SEP_STR "\\"
#define PATH_SEP_CHAR '\\'
#define ALT_SEP_CHAR '/'
#define SERVER_DLL "server.dll"
#elif defined __linux__
#define OS_LINUX
#include <dlfcn.h>
@ -43,11 +39,6 @@
#include <dirent.h>
#define dlmount(x) dlopen(x,RTLD_NOW)
typedef void* HINSTANCE;
#define PATH_SEP_STR "/"
#define PATH_SEP_CHAR '/'
#define ALT_SEP_CHAR '\\'
#define stricmp strcasecmp
#define SERVER_DLL "server_i486.so"
#endif
#if defined __linux__
@ -55,8 +46,6 @@
int GetLastError();
#endif
bool GetFileOfAddress(void *pAddr, char *buffer, size_t maxlength);
#if defined __WIN32__ || defined _WIN32 || defined WIN32
#define SMM_API extern "C" __declspec(dllexport)
#elif defined __GNUC__
@ -67,12 +56,11 @@ bool GetFileOfAddress(void *pAddr, char *buffer, size_t maxlength);
typedef __int64 int64_t;
typedef unsigned __int64 uint64_t;
#elif defined __GNUC__
#include <stdint.h>
#if !__GLIBC_HAVE_LONG_LONG
# if !__GLIBC_HAVE_LONG_LONG
typedef long long int64_t;
# endif
typedef unsigned long long uint64_t;
#endif
#endif
#ifndef __linux__
#define snprintf _snprintf