Welcome to mirror list, hosted at ThFree Co, Russian Federation.

specstrings.h « include « w32api « winsup - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d5ee7f69d2882e17523dc6f676c963b1ee80f5a3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#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 OUT
#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)
#ifndef OPTIONAL
#define OPTIONAL
#endif

#endif