Vitaly Lipatov : include: Add missing PCWCHAR to winnt.h.
Module: wine Branch: master Commit: 7377b53681cd2a96fb087b9b7790ca74121704e6 URL: https://gitlab.winehq.org/wine/wine/-/commit/7377b53681cd2a96fb087b9b7790ca7... Author: Vitaly Lipatov <lav(a)etersoft.ru> Date: Sun Jul 16 17:18:02 2023 +0300 include: Add missing PCWCHAR to winnt.h. --- include/winnt.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/include/winnt.h b/include/winnt.h index c04f25b29bd..2e1aac0f477 100644 --- a/include/winnt.h +++ b/include/winnt.h @@ -536,7 +536,8 @@ typedef CHAR *PZZSTR; typedef const CHAR *PCZZSTR; /* Unicode string types */ -typedef const WCHAR *PCWCHAR, *LPCUWCHAR, *PCUWCHAR; +typedef const WCHAR *PCWCHAR, *LPCWCHAR; +typedef const WCHAR *PCUWCHAR, *LPCUWCHAR; typedef WCHAR *PWCH, *LPWCH; typedef const WCHAR *PCWCH, *LPCWCH; typedef WCHAR *PNZWCH, *PUNZWCH;
participants (1)
-
Alexandre Julliard