[PATCH 3/5] Add initial debugging facilities to the quartzdrv.

Pierre d'Herbemont pdherbemont at free.fr
Fri Oct 20 14:47:22 CDT 2006


---
  dlls/winequartz.drv/quartzdrv_main.c |   33 
++++++++++++++++++++++++++++++++-
  1 files changed, 32 insertions(+), 1 deletions(-)
-------------- next part --------------
diff --git a/dlls/winequartz.drv/quartzdrv_main.c b/dlls/winequartz.drv/quartzdrv_main.c
index 6d764e4..8d65c5a 100644
--- a/dlls/winequartz.drv/quartzdrv_main.c
+++ b/dlls/winequartz.drv/quartzdrv_main.c
@@ -26,8 +26,39 @@ #include "windef.h"
 #include "winbase.h"
 #include "winreg.h"
 
+#include "wine/debug.h"
+
+WINE_DEFAULT_DEBUG_CHANNEL(quartzdrv);
+
+/***********************************************************************
+ *           process initialisation routine
+ */
+static BOOL process_attach(void)
+{
+    TRACE("\n");
+    return TRUE;
+}
+
+
+/***********************************************************************
+ *           thread termination routine
+ */
+static void thread_detach(void)
+{
+    TRACE("\n");
+}
+
+
+/***********************************************************************
+ *           process termination routine
+ */
+static void process_detach(void)
+{
+    FIXME("\n");
+}
+
 /***********************************************************************
- *           QUARTZDRV initialisation routine
+ *           Dll entry point
  */
 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
 {


More information about the wine-patches mailing list