24 Jan
2023
24 Jan
'23
9:04 p.m.
Module: wine Branch: master Commit: 7ada8b96fb1dc305028a29fd3f4d1b0f019da75c URL: https://gitlab.winehq.org/wine/wine/-/commit/7ada8b96fb1dc305028a29fd3f4d1b0... Author: Alex Henrie <alexhenrie24(a)gmail.com> Date: Mon Dec 12 22:49:24 2022 -0700 include: Add RTL_CONSTANT_STRING. --- include/ntdef.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/ntdef.h b/include/ntdef.h index 92366c3f3bb..8d04f83da5d 100644 --- a/include/ntdef.h +++ b/include/ntdef.h @@ -84,4 +84,6 @@ typedef struct _RTL_BALANCED_NODE #define RTL_BALANCED_NODE_RESERVED_PARENT_MASK 3 +#define RTL_CONSTANT_STRING(s) { sizeof(s) - sizeof(s[0]), sizeof(s), (void*)s } + #endif /* _NTDEF_ */