364740d30f41cc0039a9b2a83af4e84ec6b6e9ef
[reactos.git] / reactos / lib / shell32 / misc / dllmain.c
1 /* $Id: dllmain.c,v 1.1 2001/07/06 02:47:17 rex Exp $
2 *
3 * COPYRIGHT: See COPYING in the top level directory
4 * PROJECT: ReactOS system libraries
5 * FILE: lib/shell32/misc/dllmain.c
6 * PURPOSE: Library main function
7 * PROGRAMMER: Rex Jolliff (rex@lvcablemodem.com)
8 */
9
10 #include <ddk/ntddk.h>
11 #include <windows.h>
12
13 #define NDEBUG
14 #include <debug.h>
15
16
17 INT STDCALL
18 DllMain(PVOID hinstDll,
19 ULONG dwReason,
20 PVOID reserved)
21 {
22 DPRINT("SHELL32: DllMain() called\n");
23
24 switch (dwReason)
25 {
26 case DLL_PROCESS_ATTACH:
27 break;
28
29 case DLL_PROCESS_DETACH:
30 break;
31 }
32
33 DPRINT1("SHELL32: DllMain() done\n");
34
35 return TRUE;
36 }
37
38