stdarg.h in winbase.h

Francois Gouget fgouget at free.fr
Wed Sep 3 15:36:58 CDT 2003


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 at free.fr        http://fgouget.free.fr/
      Any sufficiently advanced bug is indistinguishable from a feature.
                            -- from some indian guy




More information about the wine-devel mailing list