remove debugging code

git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gui/trunk@2382 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
Scott Christley 1997-08-17 00:04:59 +00:00
parent 944aade680
commit 8400afb2ee

View file

@ -57,13 +57,10 @@ WINBOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call,
/* Initialize the GNUstep Base Library runtime structures */
gnustep_base_init_runtime();
#endif /* __MS_WIN32__ */
printf("GNUstep GUI Library: process attach\n");
}
if (ul_reason_for_call == DLL_PROCESS_DETACH)
{
printf("GNUstep GUI Library: process detach\n");
}
if (ul_reason_for_call == DLL_THREAD_ATTACH)
@ -72,13 +69,10 @@ WINBOOL WINAPI DllMain(HANDLE hInst, ULONG ul_reason_for_call,
/* Initialize C stdio DLL */
_CRT_INIT(hInst, ul_reason_for_call, lpReserved);
#endif /* __MS_WIN32__ */
printf("GNUstep GUI Library: thread attach\n");
}
if (ul_reason_for_call == DLL_THREAD_DETACH)
{
printf("GNUstep GUI Library: thread detach\n");
}
return TRUE;