| 52 | } |
| 53 | |
| 54 | BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD reason, LPVOID pReserved) |
| 55 | { |
| 56 | switch (reason) |
| 57 | { |
| 58 | case DLL_PROCESS_ATTACH: |
| 59 | GfxLayer::Initialize(); |
| 60 | break; |
| 61 | } |
| 62 | |
| 63 | return TRUE; |
| 64 | } |
nothing calls this directly
no test coverage detected