1 /* 2 * PROJECT: ReactOS DDK 3 * COPYRIGHT: This file is in the Public Domain. 4 * FILE: driverspecs.h 5 * ABSTRACT: This header stubs out Driver Verifier annotations to 6 * allow drivers using them to compile with our header set. 7 */ 8 9 /* 10 * Stubs 11 */ 12 #define __drv_dispatchType(x) 13 #define __drv_dispatchType_other 14 15 /* 16 * FIXME: These annotations are not driver-only and does not belong here 17 */ 18 #define __in 19 #define __in_bcount(Size) 20 #define __in_ecount(Size) 21 22 #define __out 23 #define __out_bcount(Size) 24 #define __out_bcount_part(Size, Length) 25 #define __out_ecount(Size) 26 27 #define __inout 28 29 #define __deref_out_ecount(Size) 30 31 #define __drv_aliasesMem 32 #define __drv_allocatesMem(kind) 33 #define __drv_freesMem(kind) 34