v1.3.0.0
dllmain.cpp
1
/*
2
This file is part of the WASimCommander project.
3
https://github.com/mpaperno/WASimCommander
4
5
COPYRIGHT: (c) Maxim Paperno; All Rights Reserved.
6
7
This file may be used under the terms of either the GNU General Public License (GPL)
8
or the GNU Lesser General Public License (LGPL), as published by the Free Software
9
Foundation, either version 3 of the Licenses, or (at your option) any later version.
10
11
This program is distributed in the hope that it will be useful,
12
but WITHOUT ANY WARRANTY; without even the implied warranty of
13
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14
GNU General Public License for more details.
15
16
Copies of the GNU GPL and LGPL are included with this project
17
and 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
24
BOOL 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
src
WASimClient
dllmain.cpp
Generated for WASimCommander v1.3.0.0 by
1.9.4