Remove some debugging messages - although this code is a complete hack, we dont need to announce it to the world every time they use freeze!
diff --git a/PC/frozen_dllmain.c b/PC/frozen_dllmain.c
index 0873d8f..fbb4713 100644
--- a/PC/frozen_dllmain.c
+++ b/PC/frozen_dllmain.c
@@ -64,7 +64,7 @@
 {
 	char **modName;
 	for (modName = possibleModules;*modName;*modName++) {
-		printf("Initialising '%s'\n", *modName);
+/*		printf("Initialising '%s'\n", *modName); */
 		CallModuleDllMain(*modName, DLL_PROCESS_ATTACH);
 	}
 }
@@ -80,7 +80,7 @@
 	for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2;
 	     modName >= possibleModules;
 	     *modName--) {
-		printf("Terminating '%s'\n", *modName);
+/*		printf("Terminating '%s'\n", *modName);*/
 		CallModuleDllMain(*modName, DLL_PROCESS_DETACH);
 	}
 }