30 #ifndef __CLAW_DYNAMIC_LIBRARY_TRAITS_WIN32_HPP__
31 #define __CLAW_DYNAMIC_LIBRARY_TRAITS_WIN32_HPP__
60 return LoadLibrary( name.c_str() );
71 return LoadLibrary( name.c_str() );
96 *(FARPROC*)(&result) = GetProcAddress( h, name.c_str() );
109 return GetProcAddress( h, name.c_str() ) != NULL;
127 #endif // __CLAW_DYNAMIC_LIBRARY_TRAITS_WIN32_HPP__