- static inline void *wxDllGetSymbol(shl_t *handle, const char *name)
- {
- void *sym;
- if ( shl_findsym(handle, name, TYPE_UNDEFINED, &sym) == 0 )
- return sym;
- else
- return (void *)0;
- }
-#elif defined(__WINDOWS__)
- #define wxDllOpen(lib) ::LoadLibrary(lib)
- #define wxDllGetSymbol(handle, name) ::GetProcAddress(handle, name)
- #define wxDllClose ::FreeLibrary
-#else
- #error "Don't know how to load shared libraries on this platform."
-#endif // OS
-
-// ---------------------------------------------------------------------------
-// Global variables
-// ---------------------------------------------------------------------------