Kaydet (Commit) 4779a0a6 authored tarafından Mark Hammond's avatar Mark Hammond

Remove some debugging messages - although this code is a complete hack, we dont…

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!
üst 034c2a9f
...@@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void) ...@@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void)
{ {
char **modName; char **modName;
for (modName = possibleModules;*modName;*modName++) { for (modName = possibleModules;*modName;*modName++) {
printf("Initialising '%s'\n", *modName); /* printf("Initialising '%s'\n", *modName); */
CallModuleDllMain(*modName, DLL_PROCESS_ATTACH); CallModuleDllMain(*modName, DLL_PROCESS_ATTACH);
} }
} }
...@@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void) ...@@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void)
for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2; for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2;
modName >= possibleModules; modName >= possibleModules;
*modName--) { *modName--) {
printf("Terminating '%s'\n", *modName); /* printf("Terminating '%s'\n", *modName);*/
CallModuleDllMain(*modName, DLL_PROCESS_DETACH); CallModuleDllMain(*modName, DLL_PROCESS_DETACH);
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment