RC_INVOKED (&NOWINRES) special cases.
This commit is contained in:
parent
0e85f54db7
commit
fcba601cf4
|
@ -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 */
|
||||
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue