Mercurial > games > semicongine
comparison fuhtark_test/include/ddk/driverspecs.h @ 1500:91c8c3b7cbf0
add: futhark tests for generating vulkan api
| author | sam <sam@basx.dev> |
|---|---|
| date | Wed, 26 Nov 2025 21:36:48 +0700 |
| parents | |
| children |
comparison
equal
deleted
inserted
replaced
| 1499:1f58458b7ef7 | 1500:91c8c3b7cbf0 |
|---|---|
| 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) |
