3 Sep
2003
3 Sep
'03
8:36 p.m.
On Wed, 3 Sep 2003, Dimitrie O. Paun wrote: [...]
So, in other words, in Windows, the following program does not compile?
#include <winbase.h>
int main() { return 0; }
Yep. In Windows you always have to do: #include <windows.h> int main() { return 0; } And windows.h includes stdarg.h and winbase.h for you. -- Francois Gouget fgouget(a)free.fr http://fgouget.free.fr/ Any sufficiently advanced bug is indistinguishable from a feature. -- from some indian guy