MCPcopy Create free account
hub / github.com/Autodesk/Aurora / DllMain

Function DllMain

Libraries/ImageProcessingResolver/DLL.cpp:26–38  ·  view source on GitHub ↗

The module entry point

Source from the content-addressed store, hash-verified

24#if defined _WIN32
25// The module entry point
26BOOL APIENTRY DllMain(HMODULE /*hModule*/, DWORD ul_reason_for_call, LPVOID /*lpReserved*/)
27{
28 switch (ul_reason_for_call)
29 {
30 case DLL_PROCESS_ATTACH:
31 pxr::Ar_DefineResolver<ImageProcessingResolverPlugin>();
32 case DLL_THREAD_ATTACH:
33 case DLL_THREAD_DETACH:
34 case DLL_PROCESS_DETACH:
35 break;
36 }
37 return TRUE;
38}
39#endif

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected