v1.3.0.0
dllmain.cpp
1/*
2This file is part of the WASimCommander project.
3https://github.com/mpaperno/WASimCommander
4
5COPYRIGHT: (c) Maxim Paperno; All Rights Reserved.
6
7This file may be used under the terms of either the GNU General Public License (GPL)
8or the GNU Lesser General Public License (LGPL), as published by the Free Software
9Foundation, either version 3 of the Licenses, or (at your option) any later version.
10
11This program is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16Copies of the GNU GPL and LGPL are included with this project
17and are available at <http://www.gnu.org/licenses/>.
18*/
19
20// dllmain.cpp : Defines the entry point for the DLL application.
21#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
22#include <windows.h>
23
24BOOL APIENTRY DllMain( HMODULE hModule,
25 DWORD ul_reason_for_call,
26 LPVOID lpReserved
27 )
28{
29 switch (ul_reason_for_call)
30 {
31 case DLL_PROCESS_ATTACH:
32 case DLL_THREAD_ATTACH:
33 case DLL_THREAD_DETACH:
34 case DLL_PROCESS_DETACH:
35 break;
36 }
37 return TRUE;
38}
39