*** empty log message ***

This commit is contained in:
David Anderson
2004-10-29 20:35:44 +00:00
parent 712859eb20
commit d038e926fd
4 changed files with 5 additions and 2 deletions

View File

@@ -33,6 +33,9 @@
#define AMXMODX_H
#ifdef __linux__
#include <unistd.h>
#endif
#include "string.h"
#include <extdll.h>
#include <meta_api.h>
@@ -78,6 +81,7 @@ extern AMX_NATIVE_INFO vault_Natives[];
#define DLLOAD(path) (DLHANDLE)LoadLibrary(path)
#define DLPROC(m,func) GetProcAddress(m,func)
#define DLFREE(m) FreeLibrary(m)
extern int errno;
#else
#define DLLOAD(path) (DLHANDLE)dlopen(path, RTLD_NOW)
#define DLPROC(m,func) dlsym(m,func)