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
e6d94864
Commit
e6d94864
authored
Mar 08, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Fix parameter type in the ModifyWorldTransform driver entry point.
parent
383bda91
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
enhmetafiledrv.h
dlls/gdi32/enhmfdrv/enhmetafiledrv.h
+1
-1
mapping.c
dlls/gdi32/enhmfdrv/mapping.c
+1
-1
gdi_private.h
dlls/gdi32/gdi_private.h
+1
-1
No files found.
dlls/gdi32/enhmfdrv/enhmetafiledrv.h
View file @
e6d94864
...
...
@@ -90,7 +90,7 @@ extern INT CDECL EMFDRV_IntersectClipRect( PHYSDEV dev, INT left, INT top,
INT
bottom
)
DECLSPEC_HIDDEN
;
extern
BOOL
CDECL
EMFDRV_InvertRgn
(
PHYSDEV
dev
,
HRGN
hrgn
)
DECLSPEC_HIDDEN
;
extern
BOOL
CDECL
EMFDRV_LineTo
(
PHYSDEV
dev
,
INT
x
,
INT
y
)
DECLSPEC_HIDDEN
;
extern
BOOL
CDECL
EMFDRV_ModifyWorldTransform
(
PHYSDEV
dev
,
const
XFORM
*
xform
,
INT
mode
)
DECLSPEC_HIDDEN
;
extern
BOOL
CDECL
EMFDRV_ModifyWorldTransform
(
PHYSDEV
dev
,
const
XFORM
*
xform
,
DWORD
mode
)
DECLSPEC_HIDDEN
;
extern
BOOL
CDECL
EMFDRV_MoveTo
(
PHYSDEV
dev
,
INT
x
,
INT
y
)
DECLSPEC_HIDDEN
;
extern
INT
CDECL
EMFDRV_OffsetClipRgn
(
PHYSDEV
dev
,
INT
x
,
INT
y
)
DECLSPEC_HIDDEN
;
extern
INT
CDECL
EMFDRV_OffsetViewportOrg
(
PHYSDEV
dev
,
INT
x
,
INT
y
)
DECLSPEC_HIDDEN
;
...
...
dlls/gdi32/enhmfdrv/mapping.c
View file @
e6d94864
...
...
@@ -119,7 +119,7 @@ BOOL CDECL EMFDRV_SetWorldTransform( PHYSDEV dev, const XFORM *xform)
return
EMFDRV_WriteRecord
(
dev
,
&
emr
.
emr
);
}
BOOL
CDECL
EMFDRV_ModifyWorldTransform
(
PHYSDEV
dev
,
const
XFORM
*
xform
,
INT
mode
)
BOOL
CDECL
EMFDRV_ModifyWorldTransform
(
PHYSDEV
dev
,
const
XFORM
*
xform
,
DWORD
mode
)
{
EMRMODIFYWORLDTRANSFORM
emr
;
...
...
dlls/gdi32/gdi_private.h
View file @
e6d94864
...
...
@@ -128,7 +128,7 @@ typedef struct tagDC_FUNCS
INT
(
CDECL
*
pIntersectClipRect
)(
PHYSDEV
,
INT
,
INT
,
INT
,
INT
);
BOOL
(
CDECL
*
pInvertRgn
)(
PHYSDEV
,
HRGN
);
BOOL
(
CDECL
*
pLineTo
)(
PHYSDEV
,
INT
,
INT
);
BOOL
(
CDECL
*
pModifyWorldTransform
)(
PHYSDEV
,
const
XFORM
*
,
INT
);
BOOL
(
CDECL
*
pModifyWorldTransform
)(
PHYSDEV
,
const
XFORM
*
,
DWORD
);
BOOL
(
CDECL
*
pMoveTo
)(
PHYSDEV
,
INT
,
INT
);
INT
(
CDECL
*
pOffsetClipRgn
)(
PHYSDEV
,
INT
,
INT
);
INT
(
CDECL
*
pOffsetViewportOrg
)(
PHYSDEV
,
INT
,
INT
);
...
...
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