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
9977e53e
Commit
9977e53e
authored
Jan 29, 2001
by
Eric Kohl
Committed by
Alexandre Julliard
Jan 29, 2001
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disabled setting of window origin from an EMF.
parent
31052f99
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
6 deletions
+6
-6
enhmetafile.c
objects/enhmetafile.c
+6
-6
No files found.
objects/enhmetafile.c
View file @
9977e53e
...
...
@@ -425,9 +425,15 @@ BOOL WINAPI PlayEnhMetaFileRecord(
}
case
EMR_SETWINDOWORGEX
:
{
/*
* FIXME: The call to SetWindowOrgEx prevents EMFs from being scrolled
* by an application. This is very BAD!!!
*/
#if 0
PEMRSETWINDOWORGEX pSetWindowOrgEx = (PEMRSETWINDOWORGEX) mr;
SetWindowOrgEx(hdc, pSetWindowOrgEx->ptlOrigin.x,
pSetWindowOrgEx->ptlOrigin.y, NULL);
#endif
break
;
}
case
EMR_SETWINDOWEXTEX
:
...
...
@@ -439,15 +445,9 @@ BOOL WINAPI PlayEnhMetaFileRecord(
}
case
EMR_SETVIEWPORTORGEX
:
{
/*
* FIXME: The call to SetViewportOrgEx prevents EMFs from being scrolled
* by an application. This is very bad manner!!!
*/
#if 0
PEMRSETVIEWPORTORGEX
pSetViewportOrgEx
=
(
PEMRSETVIEWPORTORGEX
)
mr
;
SetViewportOrgEx
(
hdc
,
pSetViewportOrgEx
->
ptlOrigin
.
x
,
pSetViewportOrgEx
->
ptlOrigin
.
y
,
NULL
);
#endif
break
;
}
case
EMR_SETVIEWPORTEXTEX
:
...
...
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