mirror of
https://github.com/reactos/reactos.git
synced 2025-06-30 19:01:22 +00:00
[GDI32][NTGDI][SDK] ExtTextOut: Fix some type problems (#7856)
JIRA issue: CORE-19898 - Modify NtGdiExtTextOutW prototype. - Add const to some paramters. - Make Count parameter unsigned. - Delete needless type casts.
This commit is contained in:
parent
7afcd2a8b7
commit
3660920b7f
3 changed files with 12 additions and 12 deletions
|
@ -2500,10 +2500,10 @@ NtGdiExtTextOutW(
|
|||
_In_ INT x,
|
||||
_In_ INT y,
|
||||
_In_ UINT flOpts,
|
||||
_In_opt_ LPRECT prcl,
|
||||
_In_reads_opt_(cwc) LPWSTR pwsz,
|
||||
_In_range_(0, 0xffff) INT cwc,
|
||||
_In_reads_opt_(_Inexpressible_(cwc)) LPINT pdx,
|
||||
_In_opt_ LPCRECT prcl,
|
||||
_In_reads_opt_(cwc) LPCWSTR pwsz,
|
||||
_In_range_(0, 0xffff) UINT cwc,
|
||||
_In_reads_opt_(_Inexpressible_(cwc)) const INT *pdx,
|
||||
_In_ DWORD dwCodePage);
|
||||
|
||||
__kernel_entry
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue