:pserver:cvsanon@mok.lvcm.com:/CVS/ReactOS reactos
[reactos.git] / lib / winmm / dllmain.c
1 /*
2  * COPYRIGHT:   See COPYING in the top level directory
3  * PROJECT:     ReactOS Media API DLL
4  * FILE:        dllmain.c
5  * PURPOSE:     DLL entry
6  * PROGRAMMERS: Steven Edwards (isolation@users.sourceforge.net)
7  * REVISIONS:
8  *   SAE 9-24-02 Created
9  */
10
11 #include <ddk/ntddk.h>
12 #include <windows.h>
13
14 #define NDEBUG
15 #include <debug.h>
16
17 INT STDCALL
18 DllMain(PVOID hinstDll,
19         ULONG dwReason,
20         PVOID reserved)
21 {
22   DbgPrint("WINMM: 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   DbgPrint("WINMM: DllMain() done\n");
34
35   return TRUE;
36 }