From d1183134855740e847f1e373a3e1e37dddb1786a Mon Sep 17 00:00:00 2001 From: Simon Rozman Date: Sat, 17 Aug 2024 21:40:38 +0200 Subject: [PATCH] compat: add _Out_writes_all_opt_ Signed-off-by: Simon Rozman --- include/stdex/compat.hpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/include/stdex/compat.hpp b/include/stdex/compat.hpp index d4c60a1c0..26e689df7 100644 --- a/include/stdex/compat.hpp +++ b/include/stdex/compat.hpp @@ -109,6 +109,9 @@ #ifndef _Out_writes_opt_ #define _Out_writes_opt_(p) #endif +#ifndef _Out_writes_all_opt_ +#define _Out_writes_all_opt_(p) +#endif #ifndef _Out_writes_opt_z_ #define _Out_writes_opt_z_(p) #endif