www.delorie.com/archives/browse.cgi | search |
Axel Riese wrote: > > > Yes, I worked that out by self. But I still get undefined > > > reference to 'IsWindowVisible' ? > > > > You may be missing a declaration for IsWindowVisible. Does the source > > file have #include <windows.h> anywhere? > > Hm, in this case you should have problems at compile time, not at > link time, shouldn't you ? Not necessarily. In the absence of a declaration, C will guess "int IsWindowVisible()", which in this case is wrong. BTW you can catch such problems by compiling with -Wall: jcs.c:4: warning: implicit declaration of function `IsWindowVisible' -- Jeff Sturm jsturm AT sigma6 DOT com -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com
webmaster | delorie software privacy |
Copyright © 2019 by DJ Delorie | Updated Jul 2019 |