1 /******************************************************************************
2 *
3 * Copyright (C) 2007, The Gentee Group. All rights reserved.
4 * This file is part of the Gentee open source project <http://www.gentee.com>.
5 *
6 * THIS FILE IS PROVIDED UNDER THE TERMS OF THE GENTEE LICENSE ("AGREEMENT").
7 * ANY USE, REPRODUCTION OR DISTRIBUTION OF THIS FILE CONSTITUTES RECIPIENTS
8 * ACCEPTANCE OF THE AGREEMENT.
9 *
10 * dll 20.04.2007 0.0.A.
11 *
12 * Author:
13 *
14 ******************************************************************************/
15 #include "windows.h"
16 #include "../../genteeapi/gentee.h"
17 #include "../../common/msglist.h"
18
19 HINSTANCE handledll;
20
21 BOOL WINAPI DllMain( HINSTANCE hinstDll, DWORD fdwReason,
22 LPVOID lpReserved )
23 //BOOL WINAPI _DllMainCRTStartup( HINSTANCE hinstDll, DWORD fdwReason,
24 // LPVOID lpReserved )
25 {
26 if ( fdwReason == DLL_PROCESS_ATTACH )
27 handledll = hinstDll;
28 return ( TRUE );
29 }
30