source: trunk/MFCtooling/userlog/dllmain.cpp @ 32

Last change on this file since 32 was 32, checked in by sherbold, 13 years ago
File size: 410 bytes
Line 
1// dllmain.cpp : Defines the entry point for the DLL application.
2#include "stdafx.h"
3
4BOOL APIENTRY DllMain( HMODULE hModule,
5                       DWORD  ul_reason_for_call,
6                       LPVOID lpReserved
7                                         )
8{
9        switch (ul_reason_for_call)
10        {
11        case DLL_PROCESS_ATTACH:
12        case DLL_THREAD_ATTACH:
13        case DLL_THREAD_DETACH:
14        case DLL_PROCESS_DETACH:
15                break;
16        }
17        return TRUE;
18}
19
Note: See TracBrowser for help on using the repository browser.