MCPcopy Create free account
hub / github.com/clMathLibraries/clSPARSE / DllMain

Function DllMain

src/clsparseTimer/dllmain.cpp:28–42  ·  view source on GitHub ↗

dllmain.cpp : Defines the entry point for the DLL application.

Source from the content-addressed store, hash-verified

26
27// dllmain.cpp : Defines the entry point for the DLL application.
28BOOL APIENTRY DllMain( HMODULE hModule,
29 DWORD ul_reason_for_call,
30 LPVOID lpReserved
31 )
32{
33 switch( ul_reason_for_call )
34 {
35 case DLL_PROCESS_ATTACH:
36 case DLL_THREAD_ATTACH:
37 case DLL_THREAD_DETACH:
38 case DLL_PROCESS_DETACH:
39 break;
40 }
41 return TRUE;
42}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected