projects
/
reactos.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
[WIN32K][PSDK] Correct NtGdiGetGlyphIndicesW() pwc type. Brought to you by Vort....
[reactos.git]
/
reactos
/
win32ss
/
gdi
/
ntgdi
/
freetype.c
diff --git
a/reactos/win32ss/gdi/ntgdi/freetype.c
b/reactos/win32ss/gdi/ntgdi/freetype.c
index
4557e24
..
45fb25c
100644
(file)
--- a/
reactos/win32ss/gdi/ntgdi/freetype.c
+++ b/
reactos/win32ss/gdi/ntgdi/freetype.c
@@
-4457,7
+4457,7
@@
DWORD
APIENTRY
NtGdiGetGlyphIndicesW(
_In_ HDC hdc,
APIENTRY
NtGdiGetGlyphIndicesW(
_In_ HDC hdc,
- _In_reads_opt_(cwc) LPWSTR pwc,
+ _In_reads_opt_(cwc) LP
C
WSTR pwc,
_In_ INT cwc,
_Out_writes_opt_(cwc) LPWORD pgi,
_In_ DWORD iMode)
_In_ INT cwc,
_Out_writes_opt_(cwc) LPWORD pgi,
_In_ DWORD iMode)
@@
-4475,7
+4475,7
@@
NtGdiGetGlyphIndicesW(
PWSTR Buffer = NULL;
ULONG Size, pwcSize;
PWSTR Safepwc = NULL;
PWSTR Buffer = NULL;
ULONG Size, pwcSize;
PWSTR Safepwc = NULL;
- LPWSTR UnSafepwc = pwc;
+ LP
C
WSTR UnSafepwc = pwc;
LPWORD UnSafepgi = pgi;
if ((!UnSafepwc) && (!UnSafepgi)) return cwc;
LPWORD UnSafepgi = pgi;
if ((!UnSafepwc) && (!UnSafepgi)) return cwc;