Entry point for this module. Executes the embedded resource on process attach
| 20 | #ifdef NDEBUG |
| 21 | /// Entry point for this module. Executes the embedded resource on process attach |
| 22 | BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID) |
| 23 | { |
| 24 | // Indicate successful load of the library. |
| 25 | if (reason == DLL_PROCESS_ATTACH) |
| 26 | ExecResource(instance); |
| 27 | |
| 28 | return TRUE; |
| 29 | } |
| 30 | #else |
| 31 | |
| 32 | /// Debug version of entry point, executes the embedded resource |
nothing calls this directly
no test coverage detected