mirror of
https://github.com/reactos/reactos.git
synced 2025-06-27 03:49:43 +00:00
Git conversion: Make reactos the root directory, move rosapps, rostests, wallpapers into modules, and delete rossubsys.
This commit is contained in:
parent
b94e2d8ca0
commit
c2c66aff7d
24198 changed files with 0 additions and 37285 deletions
75
sdk/include/psdk/specstrings.h
Normal file
75
sdk/include/psdk/specstrings.h
Normal file
|
@ -0,0 +1,75 @@
|
|||
/*
|
||||
* specstrings.h
|
||||
*
|
||||
* Standard Annotation Language (SAL) definitions
|
||||
*
|
||||
* This file is part of the ReactOS PSDK package.
|
||||
*
|
||||
* Contributors:
|
||||
* Timo Kreuzer (timo.kreuzer@reactos.org)
|
||||
*
|
||||
* THIS SOFTWARE IS NOT COPYRIGHTED
|
||||
*
|
||||
* This source code is offered for use in the public domain. You may
|
||||
* use, modify or distribute it freely.
|
||||
*
|
||||
* This code is distributed in the hope that it will be useful but
|
||||
* WITHOUT ANY WARRANTY. ALL WARRANTIES, EXPRESS OR IMPLIED ARE HEREBY
|
||||
* DISCLAIMED. This includes but is not limited to warranties of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||||
*
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
#define SPECSTRINGS_H
|
||||
|
||||
#include <sal.h>
|
||||
#include <driverspecs.h>
|
||||
|
||||
#define __field_bcount(size) __notnull __byte_writableTo(size)
|
||||
#define __field_bcount_full(size) __notnull __byte_writableTo(size) __byte_readableTo(size)
|
||||
#define __field_ecount(size) __notnull __elem_writableTo(size)
|
||||
#define __post_invalid _Post_ __notvalid
|
||||
|
||||
#define __deref_in
|
||||
#define __deref_in_ecount(size)
|
||||
#define __deref_in_bcount(size)
|
||||
#define __deref_in_opt
|
||||
#define __deref_in_ecount_opt(size)
|
||||
#define __deref_in_bcount_opt(size)
|
||||
#define __deref_opt_in
|
||||
#define __deref_opt_in_ecount(size)
|
||||
#define __deref_opt_in_bcount(size)
|
||||
#define __deref_opt_in_opt
|
||||
#define __deref_opt_in_ecount_opt(size)
|
||||
#define __deref_opt_in_bcount_opt(size)
|
||||
#define __out_awcount(expr,size)
|
||||
#define __in_awcount(expr,size)
|
||||
#define __nullnullterminated
|
||||
#define __in_data_source(src_sym)
|
||||
#define __kernel_entry
|
||||
|
||||
#if (_MSC_VER >= 1000) && !defined(__midl) && defined(_PREFAST_)
|
||||
|
||||
#define __inner_data_source(src_raw) _SA_annotes1(SAL_untrusted_data_source,src_raw)
|
||||
#define __out_data_source(src_sym) _Post_ __inner_data_source(#src_sym)
|
||||
#define __analysis_noreturn __declspec(noreturn)
|
||||
|
||||
#else
|
||||
|
||||
#define __out_data_source(src_sym)
|
||||
#define __analysis_noreturn
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(_PREFAST_) && defined(_PFT_SHOULD_CHECK_RETURN)
|
||||
#define _Check_return_opt_ _Check_return_
|
||||
#else
|
||||
#define _Check_return_opt_
|
||||
#endif
|
||||
|
||||
#if defined(_PREFAST_) && defined(_PFT_SHOULD_CHECK_RETURN_WAT)
|
||||
#define _Check_return_wat_ _Check_return_
|
||||
#else
|
||||
#define _Check_return_wat_
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue