Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
0720b151
Commit
0720b151
authored
Jan 26, 2022
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wow64win: Fix some prototype mismatches.
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
ef9c0b3f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
gdi.c
dlls/wow64win/gdi.c
+6
-6
No files found.
dlls/wow64win/gdi.c
View file @
0720b151
...
...
@@ -252,7 +252,7 @@ NTSTATUS WINAPI wow64_NtGdiEqualRgn( UINT *args )
return
NtGdiEqualRgn
(
hrgn1
,
hrgn2
);
}
INT
WINAPI
wow64_NtGdiGetRgnBox
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiGetRgnBox
(
UINT
*
args
)
{
HRGN
hrgn
=
get_handle
(
&
args
);
RECT
*
rect
=
get_ptr
(
&
args
);
...
...
@@ -260,7 +260,7 @@ INT WINAPI wow64_NtGdiGetRgnBox( UINT *args )
return
NtGdiGetRgnBox
(
hrgn
,
rect
);
}
BOOL
WINAPI
wow64_NtGdiSetRectRgn
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiSetRectRgn
(
UINT
*
args
)
{
HRGN
hrgn
=
get_handle
(
&
args
);
INT
left
=
get_ulong
(
&
args
);
...
...
@@ -271,7 +271,7 @@ BOOL WINAPI wow64_NtGdiSetRectRgn( UINT *args )
return
NtGdiSetRectRgn
(
hrgn
,
left
,
top
,
right
,
bottom
);
}
INT
WINAPI
wow64_NtGdiOffsetRgn
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiOffsetRgn
(
UINT
*
args
)
{
HRGN
hrgn
=
get_handle
(
&
args
);
INT
x
=
get_ulong
(
&
args
);
...
...
@@ -299,7 +299,7 @@ NTSTATUS WINAPI wow64_NtGdiPtInRegion( UINT *args )
return
NtGdiPtInRegion
(
hrgn
,
x
,
y
);
}
BOOL
WINAPI
wow64_NtGdiRectInRegion
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiRectInRegion
(
UINT
*
args
)
{
HRGN
hrgn
=
get_handle
(
&
args
);
const
RECT
*
rect
=
get_ptr
(
&
args
);
...
...
@@ -321,7 +321,7 @@ NTSTATUS WINAPI wow64_NtGdiSaveDC( UINT *args )
return
NtGdiSaveDC
(
hdc
);
}
BOOL
WINAPI
wow64_NtGdiSetBrushOrg
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiSetBrushOrg
(
UINT
*
args
)
{
HDC
hdc
=
get_handle
(
&
args
);
INT
x
=
get_ulong
(
&
args
);
...
...
@@ -331,7 +331,7 @@ BOOL WINAPI wow64_NtGdiSetBrushOrg( UINT *args )
return
NtGdiSetBrushOrg
(
hdc
,
x
,
y
,
prev_org
);
}
BOOL
WINAPI
wow64_NtGdiGetTransform
(
UINT
*
args
)
NTSTATUS
WINAPI
wow64_NtGdiGetTransform
(
UINT
*
args
)
{
HDC
hdc
=
get_handle
(
&
args
);
DWORD
which
=
get_ulong
(
&
args
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment