Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 034c2a9 commit 4779a0aCopy full SHA for 4779a0a
1 file changed
PC/frozen_dllmain.c
@@ -64,7 +64,7 @@ void PyWinFreeze_ExeInit(void)
64
{
65
char **modName;
66
for (modName = possibleModules;*modName;*modName++) {
67
- printf("Initialising '%s'\n", *modName);
+/* printf("Initialising '%s'\n", *modName); */
68
CallModuleDllMain(*modName, DLL_PROCESS_ATTACH);
69
}
70
@@ -80,7 +80,7 @@ void PyWinFreeze_ExeTerm(void)
80
for (modName = possibleModules+(sizeof(possibleModules) / sizeof(char *))-2;
81
modName >= possibleModules;
82
*modName--) {
83
- printf("Terminating '%s'\n", *modName);
+/* printf("Terminating '%s'\n", *modName);*/
84
CallModuleDllMain(*modName, DLL_PROCESS_DETACH);
85
86
0 commit comments