mirror of
https://github.com/reactos/reactos.git
synced 2025-08-03 17:25:55 +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
|
@ -7360,10 +7360,10 @@ NtGdiExtTextOutW(
|
|||
IN INT XStart,
|
||||
IN INT YStart,
|
||||
IN UINT fuOptions,
|
||||
IN OPTIONAL LPRECT UnsafeRect,
|
||||
IN LPWSTR UnsafeString,
|
||||
IN INT Count,
|
||||
IN OPTIONAL LPINT UnsafeDx,
|
||||
IN OPTIONAL LPCRECT UnsafeRect,
|
||||
IN LPCWSTR UnsafeString,
|
||||
IN UINT Count,
|
||||
IN OPTIONAL const INT *UnsafeDx,
|
||||
IN DWORD dwCodePage)
|
||||
{
|
||||
BOOL Result = FALSE;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue