2008-01-30 Brandon Sneed <nivenh@sourceware.org>

* include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
	__out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
	__out_bcount_opt): Defined additional pseudo-modifiers.
This commit is contained in:
Brandon Sneed 2008-01-30 09:18:22 +00:00
parent 2815ad8faf
commit 051085cfd4
2 changed files with 17 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2008-01-30 Brandon Sneed <nivenh@sourceware.org>
* include/windef.h (__in, __inout, __in_opt, __in_bcound, __in_ecount,
__out, __out_ecount_part, __struct_bcount, __field_ecount_opt,
__out_bcount_opt): Defined additional pseudo-modifiers.
2008-01-29 Brandon Sneed <nivenh@sourceware.org>
* include/ras.h (RAS_MaxDnsSuffix): corrected typo, was RAX_MaxDnsSuffix.
(RASENTRYA, RASENTRYW): Added members (dwfOptions2, dwfOptions3, szDnsSuffix,

View File

@ -62,6 +62,17 @@ extern "C" {
#ifndef _NO_W32_PSEUDO_MODIFIERS
#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