[WIN32K][PSDK] Correct NtGdiGetGlyphIndicesW() pwc type. Brought to you by Vort. CORE-867

svn path=/trunk/; revision=69561
This commit is contained in:
Amine Khaldi 2015-10-17 14:35:14 +00:00
parent 3128be5640
commit ecfe47b635
2 changed files with 3 additions and 3 deletions

View file

@ -165,7 +165,7 @@ DWORD
APIENTRY
NtGdiGetGlyphIndicesW(
_In_ HDC hdc,
_In_reads_opt_(cwc) LPWSTR pwc,
_In_reads_opt_(cwc) LPCWSTR pwc,
_In_ INT cwc,
_Out_writes_opt_(cwc) LPWORD pgi,
_In_ DWORD iMode);

View file

@ -4457,7 +4457,7 @@ DWORD
APIENTRY
NtGdiGetGlyphIndicesW(
_In_ HDC hdc,
_In_reads_opt_(cwc) LPWSTR pwc,
_In_reads_opt_(cwc) LPCWSTR pwc,
_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;
LPWSTR UnSafepwc = pwc;
LPCWSTR UnSafepwc = pwc;
LPWORD UnSafepgi = pgi;
if ((!UnSafepwc) && (!UnSafepgi)) return cwc;