update for HEAD-2003091401
[reactos.git] / lib / winmm / dllmain.c
index 2eb5093..5466e06 100644 (file)
@@ -11,7 +11,6 @@
 #include <ddk/ntddk.h>
 #include <windows.h>
 
-#define NDEBUG
 #include <debug.h>
 
 INT STDCALL
@@ -19,8 +18,6 @@ DllMain(PVOID hinstDll,
        ULONG dwReason,
        PVOID reserved)
 {
-  DbgPrint("WINMM: DllMain() called\n");
-
   switch (dwReason)
   {
   case DLL_PROCESS_ATTACH:
@@ -30,7 +27,5 @@ DllMain(PVOID hinstDll,
     break;
   }
 
-  DbgPrint("WINMM: DllMain() done\n");
-
   return TRUE;
 }