DotNetDupe 4.0.6
C++17/20 Implementation of the .NET Base Class Library (BCL)
Loading...
Searching...
No Matches
dllmain.cpp
Go to the documentation of this file.
1// dllmain.cpp : Defines the entry point for the DLL application.
2#include "pch.h"
3
4BOOL APIENTRY DllMain( HMODULE hModule,
5 DWORD ul_reason_for_call,
6 LPVOID lpReserved
7 )
8{
10 switch (ul_reason_for_call)
11 {
12 case DLL_PROCESS_ATTACH:
13 case DLL_THREAD_ATTACH:
14 case DLL_THREAD_DETACH:
15 case DLL_PROCESS_DETACH:
16 break;
17 }
19 return TRUE;
20}
21
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved)
Definition dllmain.cpp:4