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.