From bdae4913c038264ebd7933bf4d752aee853b684f Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Fri, 27 Sep 2024 12:24:17 +0200 Subject: [PATCH] compat: add _In_reads_bytes_ --- include/stdex/compat.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/stdex/compat.hpp b/include/stdex/compat.hpp index 26e689df7..e0fd28265 100644 --- a/include/stdex/compat.hpp +++ b/include/stdex/compat.hpp @@ -43,6 +43,9 @@ #ifndef _In_reads_ #define _In_reads_(p) #endif +#ifndef _In_reads_bytes_ +#define _In_reads_bytes_(p) +#endif #ifndef _In_reads_z_ #define _In_reads_z_(p) #endif