Converted to the new debug interface, using script written by Patrik
Stridvall.

diff --git a/relay32/snoop.c b/relay32/snoop.c
index afc7392..6879009 100644
--- a/relay32/snoop.c
+++ b/relay32/snoop.c
@@ -17,7 +17,7 @@
 #include "selectors.h"
 #include "stackframe.h"
 #include "debugstr.h"
-#include "debug.h"
+#include "debugtools.h"
 
 DEFAULT_DEBUG_CHANNEL(snoop)
 
@@ -141,7 +141,7 @@
 	memset((*dll)->funs,0,nrofordinals*sizeof(SNOOP_FUN));
 	if (!(*dll)->funs) {
 		HeapFree(SystemHeap,0,*dll);
-		FIXME(snoop,"out of memory\n");
+		FIXME("out of memory\n");
 		return;
 	}
 }
@@ -270,7 +270,7 @@
 		dll=dll->next;
 	}
 	if (!dll) {
-		FIXME(snoop,"entrypoint 0x%08lx not found\n",entry);
+		FIXME("entrypoint 0x%08lx not found\n",entry);
 		return; /* oops */
 	}
 	/* guess cdecl ... */
@@ -365,7 +365,7 @@
 }
 #else	/* !__i386__ */
 void SNOOP_RegisterDLL(HMODULE hmod,LPCSTR name,DWORD nrofordinals) {
-	FIXME(snoop,"snooping works only on i386 for now.\n");
+	FIXME("snooping works only on i386 for now.\n");
 	return;
 }