On 19 December 2006 20:09, Francisco J. Royo Santas wrote:
> 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
No, that is not the program, that is a not-very-useful non-compiling
snippet.
> What is going on here?? What do I have to do to have cout and cerr back
> normally??
You probably ignored step 1.
http://cygwin.com/faq/faq.programming.html#faq.programming.msvs-mingw cheers,
DaveK
--
Can't think of a witty .sigline today....
--
Unsubscribe info:
http://cygwin.com/ml/#unsubscribe-simpleProblem reports:
http://cygwin.com/problems.htmlDocumentation:
http://cygwin.com/docs.htmlFAQ:
http://cygwin.com/faq/