branch update for HEAD-2003050101
[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   switch (dwReason)
23   {
24   case DLL_PROCESS_ATTACH:
25     break;
26
27   case DLL_PROCESS_DETACH:
28     break;
29   }
30
31   return TRUE;
32 }