include: Don't define __in and __out.

Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=51919
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alexandre Julliard 2021-11-03 10:42:07 +01:00
parent 62e2d7a99b
commit 1c9b843ecf
2 changed files with 4 additions and 4 deletions

View File

@ -344,7 +344,7 @@
#define __ecount(size)
#define __ecount_opt(size)
#define __in
/* #define __in */ /* conflicts with system headers */
#define __in_bcount(size)
#define __in_bcount_nz(size)
#define __in_bcount_nz_opt(size)
@ -390,7 +390,7 @@
#define __inout_z
#define __inout_z_opt
#define __out
/* #define __out */ /* conflicts with system headers */
#define __out_bcount(size)
#define __out_bcount_full(size)
#define __out_bcount_full_opt(size)

View File

@ -107,8 +107,8 @@
#ifdef WIN32
#define __in_win __in
#define __out_win __out
#define __in_win
#define __out_win
#endif