123456789101112131415 |
- #include "precompile.h"
- #include "config.h"
- #ifdef _WIN32
- BOOL WINAPI DllMain(HANDLE hInstance, DWORD dwReason, LPVOID dwReserved)
- {
- if (dwReason == DLL_PROCESS_ATTACH) {
- DisableThreadLibraryCalls(hInstance);
- }
- return TRUE;
- }
- #endif
|