"cout" and "cerr" won't work after cygwin1.dll init from VC++

Francisco J. Royo Santas 497328@unizar.es
Tue Dec 19 20:36:00 GMT 2006


Hello

I have a VC++ program that uses a Cygwin-compiled DLL. I can init cygwin1.dll
but, after doing this, cout and cerr stop working. cout << "Message" << endl
does not appear on the screen. I do not know exactly what happens here. The
program is:

cout << "Before" << endl;   // Appears
HMODULE cygwinDll = LoadLibrary("cygwin1.dll");
void (*init)() = (void (__cdecl *)(void)) GetProcAddress(cygwinDll,
"cygwin_dll_init");
init();
cout << "After" << endl;    // Does nor appear

What is going on here?? What do I have to do to have cout and cerr back
normally??

Thanks and G'bye
Francisco J. Royo Santas


--
Unsubscribe info:      http://cygwin.com/ml/#unsubscribe-simple
Problem reports:       http://cygwin.com/problems.html
Documentation:         http://cygwin.com/docs.html
FAQ:                   http://cygwin.com/faq/



More information about the Cygwin mailing list