RC_INVOKED (&NOWINRES) special cases.

This commit is contained in:
Francois Gouget 2001-05-07 18:18:33 +00:00 committed by Alexandre Julliard
parent 0e85f54db7
commit fcba601cf4
2 changed files with 7 additions and 0 deletions

View file

@ -8,7 +8,9 @@
#ifndef __WINE_STDIO_H
#define __WINE_STDIO_H
#ifndef RC_INVOKED
#include <stdarg.h>
#endif
#include "msvcrt/wctype.h" /* For wint_t */

View file

@ -5,6 +5,10 @@
#error Wine should not include windows.h internally
#endif
#if defined(RC_INVOKED) && !defined(NOWINRES)
#include "winresrc.h"
#else /* RC_INVOKED && !NOWINRES */
/* All the basic includes */
/* #include "excpt.h" */
#include "windef.h"
@ -82,4 +86,5 @@ WORD WINAPI WOWHandle16(HANDLE,WOW_HANDLE_TYPE);
#endif /* 0 */
#endif /* RC_INVOKED && !NOWINRES */
#endif /* __WINE_WINDOWS_H */