update for HEAD-2003091401
[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 #include <debug.h>
15
16 INT STDCALL
17 DllMain(PVOID hinstDll,
18         ULONG dwReason,
19         PVOID reserved)
20 {
21   switch (dwReason)
22   {
23   case DLL_PROCESS_ATTACH:
24     break;
25
26   case DLL_PROCESS_DETACH:
27     break;
28   }
29
30   return TRUE;
31 }