1 // fliteDll.cpp : Defines the entry point for the DLL application.
2 //
3 
4 #include "stdafx.h"
5 
6 
7 #ifdef _MANAGED
8 #pragma managed(push, off)
9 #endif
10 
DllMain(HMODULE hModule,DWORD ul_reason_for_call,LPVOID lpReserved)11 BOOL APIENTRY DllMain( HMODULE hModule,
12                        DWORD  ul_reason_for_call,
13                        LPVOID lpReserved
14 					 )
15 {
16     return TRUE;
17 }
18 
19 #ifdef _MANAGED
20 #pragma managed(pop)
21 #endif
22 
23