From a2675f07d7da22a7c6ae11f545bf8f671e785a82 Mon Sep 17 00:00:00 2001 From: Valaris Date: Sun, 29 Jan 2006 16:00:45 +0000 Subject: Clearing trunk. git-svn-id: https://rathena.svn.sourceforge.net/svnroot/rathena/trunk@5091 54d463be-8e91-2dee-dedb-b68131a5f0ec --- src/common/dll.h | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 src/common/dll.h (limited to 'src/common/dll.h') diff --git a/src/common/dll.h b/src/common/dll.h deleted file mode 100644 index 1ad49143c..000000000 --- a/src/common/dll.h +++ /dev/null @@ -1,25 +0,0 @@ - -#ifndef _DLL_H_ -#define _DLL_H_ - -#ifdef _WIN32 - - #include - #define DLL_OPEN(x) LoadLibrary(x) - #define DLL_SYM(x,y,z) (FARPROC)(x) = GetProcAddress(y,z) - #define DLL_CLOSE(x) FreeLibrary(x) - #define DLL HINSTANCE - -#else - - #include - #define DLL_OPEN(x) dlopen(x,RTLD_NOW) - #define DLL_SYM(x,y,z) (x) = (void *)dlsym(y,z) - #define DLL_CLOSE(x) dlclose(x) - #define DLL void * - -#endif - -#endif // _DLL_H_ - - -- cgit v1.2.3-60-g2f50