dservice
Форк от valentingushchin/dservice
1#include "stdafx.h"
2
3#ifdef _WINDOWS
4
5BOOL APIENTRY DllMain(HMODULE hModule,
6DWORD ul_reason_for_call,
7LPVOID lpReserved
8) {
9switch (ul_reason_for_call) {
10case DLL_PROCESS_ATTACH:
11case DLL_THREAD_ATTACH:
12case DLL_THREAD_DETACH:
13case DLL_PROCESS_DETACH:
14default:
15break;
16}
17return TRUE;
18}
19
20#endif //_WINDOWS
21