Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
1fd7159c
Commit
1fd7159c
authored
Nov 17, 2009
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Disable SetDCOrg16.
parent
16da7692
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
7 deletions
+2
-7
gdi16.c
dlls/gdi32/gdi16.c
+2
-7
No files found.
dlls/gdi32/gdi16.c
View file @
1fd7159c
...
...
@@ -3662,13 +3662,8 @@ void WINAPI SetDCState16( HDC16 hdc, HDC16 hdcs )
*/
DWORD
WINAPI
SetDCOrg16
(
HDC16
hdc16
,
INT16
x
,
INT16
y
)
{
DWORD
prevOrg
=
0
;
HDC
hdc
=
HDC_32
(
hdc16
);
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
!
dc
)
return
0
;
if
(
dc
->
funcs
->
pSetDCOrg
)
prevOrg
=
dc
->
funcs
->
pSetDCOrg
(
dc
->
physDev
,
x
,
y
);
release_dc_ptr
(
dc
);
return
prevOrg
;
FIXME
(
"%04x %d,%d no longer supported
\n
"
,
hdc16
,
x
,
y
);
return
0
;
}
...
...
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