mirror of
git://sourceware.org/git/newlib-cygwin.git
synced 2025-01-16 19:40:07 +08:00
025ce65fcb
* include/specstrings.h (IN, OUT, OPTIONAL): Remove. * include/windef.h (IN, OUT, OPTIONAL): Define.
23 lines
453 B
C
23 lines
453 B
C
#ifndef _SPECSTRINGS_H
|
|
#define _SPECSTRINGS_H
|
|
#if __GNUC__ >=3
|
|
#pragma GCC system_header
|
|
#endif
|
|
|
|
/* __in and __out currently conflict with libstdc++, use with caution */
|
|
|
|
#define __in
|
|
#define __inout
|
|
#define __in_opt
|
|
#define __in_bcount(x)
|
|
#define __in_ecount(x)
|
|
#define __out
|
|
#define __out_ecount_part(x)
|
|
#define __out_ecount_part(x,y)
|
|
#define __struct_bcount(x)
|
|
#define __field_ecount_opt(x)
|
|
#define __out_bcount_opt(x)
|
|
|
|
#endif
|
|
|