Sync to trunk head(r38096)
[reactos.git] / reactos / dll / win32 / winsta / main.c
1 /*
2 * ReactOS WinStation
3 * Copyright (C) 2005 ReactOS Team
4 *
5 * This library is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU Lesser General Public
7 * License as published by the Free Software Foundation; either
8 * version 2.1 of the License, or (at your option) any later version.
9 *
10 * This library is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public
16 * License along with this library; if not, write to the Free Software
17 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 */
19 /*
20 * PROJECT: ReactOS winsta.dll
21 * FILE: lib/winsta/main.c
22 * PURPOSE: WinStation
23 * PROGRAMMER: Emanuele Aliberti <ea@reactos.com>
24 * Samuel Serapi?n
25 */
26 #include <winsta.h>
27
28 HINSTANCE hDllInstance;
29
30
31 BOOL WINAPI
32 DllMain(HINSTANCE hinstDLL,
33 DWORD dwReason,
34 LPVOID lpvReserved)
35 {
36 switch (dwReason)
37 {
38 case DLL_PROCESS_ATTACH:
39 hDllInstance = hinstDLL;
40 break;
41 case DLL_THREAD_ATTACH:
42 break;
43 case DLL_THREAD_DETACH:
44 break;
45 case DLL_PROCESS_DETACH:
46 break;
47 }
48 return TRUE;
49 }
50 /* EOF */