MCPcopy Create free account
hub / github.com/DentonW/DevIL / DllMain

Function DllMain

DevIL/src-IL/src/il_main.cpp:18–27  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

16/* Only needed for MSVC++ unless extended to actually do something =) */
17#if defined(_WIN32) && defined(_MSC_VER)
18BOOL APIENTRY DllMain(HANDLE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
19{
20 hModule; ul_reason_for_call; lpReserved;
21
22 if (ul_reason_for_call == DLL_PROCESS_ATTACH) {
23 //ilInit();
24 }
25
26 return TRUE;
27}
28#endif
29
30

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected