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
d1db4c85
Commit
d1db4c85
authored
Mar 11, 2011
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Add null driver entry points for the device printer functions.
parent
8c3766c5
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
39 additions
and
14 deletions
+39
-14
driver.c
dlls/gdi32/driver.c
+36
-12
gdiobj.c
dlls/gdi32/gdiobj.c
+3
-2
No files found.
dlls/gdi32/driver.c
View file @
d1db4c85
...
...
@@ -334,6 +334,12 @@ static BOOL CDECL nulldrv_DeleteObject( PHYSDEV dev, HGDIOBJ obj )
return
TRUE
;
}
static
DWORD
CDECL
nulldrv_DeviceCapabilities
(
LPSTR
buffer
,
LPCSTR
device
,
LPCSTR
port
,
WORD
cap
,
LPSTR
output
,
DEVMODEA
*
devmode
)
{
return
-
1
;
}
static
BOOL
CDECL
nulldrv_Ellipse
(
PHYSDEV
dev
,
INT
left
,
INT
top
,
INT
right
,
INT
bottom
)
{
return
TRUE
;
...
...
@@ -349,11 +355,28 @@ static INT CDECL nulldrv_EndPage( PHYSDEV dev )
return
0
;
}
static
INT
CDECL
nulldrv_ExtDeviceMode
(
LPSTR
buffer
,
HWND
hwnd
,
DEVMODEA
*
output
,
LPSTR
device
,
LPSTR
port
,
DEVMODEA
*
input
,
LPSTR
profile
,
DWORD
mode
)
{
return
-
1
;
}
static
INT
CDECL
nulldrv_ExtEscape
(
PHYSDEV
dev
,
INT
escape
,
INT
in_size
,
const
void
*
in_data
,
INT
out_size
,
void
*
out_data
)
{
return
0
;
}
static
BOOL
CDECL
nulldrv_ExtFloodFill
(
PHYSDEV
dev
,
INT
x
,
INT
y
,
COLORREF
color
,
UINT
type
)
{
return
TRUE
;
}
static
BOOL
CDECL
nulldrv_GdiComment
(
PHYSDEV
dev
,
UINT
size
,
const
BYTE
*
data
)
{
return
FALSE
;
}
static
COLORREF
CDECL
nulldrv_GetPixel
(
PHYSDEV
dev
,
INT
x
,
INT
y
)
{
return
0
;
...
...
@@ -613,7 +636,7 @@ const DC_FUNCTIONS null_driver =
NULL
,
/* pDeleteDC */
nulldrv_DeleteObject
,
/* pDeleteObject */
NULL
,
/* pDescribePixelFormat */
NULL
,
/* pDeviceCapabilities */
nulldrv_DeviceCapabilities
,
/* pDeviceCapabilities */
nulldrv_Ellipse
,
/* pEllipse */
nulldrv_EndDoc
,
/* pEndDoc */
nulldrv_EndPage
,
/* pEndPage */
...
...
@@ -621,8 +644,8 @@ const DC_FUNCTIONS null_driver =
NULL
,
/* pEnumICMProfiles */
NULL
,
/* pEnumDeviceFonts */
nulldrv_ExcludeClipRect
,
/* pExcludeClipRect */
NULL
,
/* pExtDeviceMode */
NULL
,
/* pExtEscape */
nulldrv_ExtDeviceMode
,
/* pExtDeviceMode */
nulldrv_ExtEscape
,
/* pExtEscape */
nulldrv_ExtFloodFill
,
/* pExtFloodFill */
nulldrv_ExtSelectClipRgn
,
/* pExtSelectClipRgn */
NULL
,
/* pExtTextOut */
...
...
@@ -630,7 +653,7 @@ const DC_FUNCTIONS null_driver =
nulldrv_FillRgn
,
/* pFillRgn */
NULL
,
/* pFlattenPath */
nulldrv_FrameRgn
,
/* pFrameRgn */
NULL
,
/* pGdiComment */
nulldrv_GdiComment
,
/* pGdiComment */
NULL
,
/* pGetBitmapBits */
NULL
,
/* pGetCharWidth */
NULL
,
/* pGetDIBits */
...
...
@@ -887,9 +910,9 @@ INT WINAPI GDI_CallExtDeviceMode16( HWND hwnd,
if
((
dc
=
get_dc_ptr
(
hdc
)))
{
if
(
dc
->
funcs
->
pExtDeviceMode
)
ret
=
dc
->
funcs
->
pExtDeviceMode
(
buf
,
hwnd
,
lpdmOutput
,
lpszDevice
,
lpszPort
,
lpdmInput
,
lpszProfile
,
fwMode
);
PHYSDEV
physdev
=
GET_DC_PHYSDEV
(
dc
,
pExtDeviceMode
);
ret
=
physdev
->
funcs
->
pExtDeviceMode
(
buf
,
hwnd
,
lpdmOutput
,
lpszDevice
,
lpszPort
,
lpdmInput
,
lpszProfile
,
fwMode
);
release_dc_ptr
(
dc
);
}
DeleteDC
(
hdc
);
...
...
@@ -941,9 +964,9 @@ DWORD WINAPI GDI_CallDeviceCapabilities16( LPCSTR lpszDevice, LPCSTR lpszPort,
if
((
dc
=
get_dc_ptr
(
hdc
)))
{
if
(
dc
->
funcs
->
pDeviceCapabilities
)
ret
=
dc
->
funcs
->
pDeviceCapabilities
(
buf
,
lpszDevice
,
lpszPort
,
fwCapability
,
lpszOutput
,
lpdm
);
PHYSDEV
physdev
=
GET_DC_PHYSDEV
(
dc
,
pDeviceCapabilities
);
ret
=
physdev
->
funcs
->
pDeviceCapabilities
(
buf
,
lpszDevice
,
lpszPort
,
fwCapability
,
lpszOutput
,
lpdm
);
release_dc_ptr
(
dc
);
}
DeleteDC
(
hdc
);
...
...
@@ -1069,10 +1092,11 @@ INT WINAPI ExtEscape( HDC hdc, INT nEscape, INT cbInput, LPCSTR lpszInData,
{
INT
ret
=
0
;
DC
*
dc
=
get_dc_ptr
(
hdc
);
if
(
dc
)
{
if
(
dc
->
funcs
->
pExtEscape
)
ret
=
dc
->
funcs
->
pExtEscape
(
dc
->
physD
ev
,
nEscape
,
cbInput
,
lpszInData
,
cbOutput
,
lpszOutData
);
PHYSDEV
physdev
=
GET_DC_PHYSDEV
(
dc
,
pExtEscape
);
ret
=
physdev
->
funcs
->
pExtEscape
(
physd
ev
,
nEscape
,
cbInput
,
lpszInData
,
cbOutput
,
lpszOutData
);
release_dc_ptr
(
dc
);
}
return
ret
;
...
...
dlls/gdi32/gdiobj.c
View file @
d1db4c85
...
...
@@ -1278,10 +1278,11 @@ BOOL WINAPI GdiComment(HDC hdc, UINT cbSize, const BYTE *lpData)
{
DC
*
dc
=
get_dc_ptr
(
hdc
);
BOOL
ret
=
FALSE
;
if
(
dc
)
{
if
(
dc
->
funcs
->
pGdiComment
)
ret
=
dc
->
funcs
->
pGdiComment
(
dc
->
physD
ev
,
cbSize
,
lpData
);
PHYSDEV
physdev
=
GET_DC_PHYSDEV
(
dc
,
pGdiComment
);
ret
=
physdev
->
funcs
->
pGdiComment
(
physd
ev
,
cbSize
,
lpData
);
release_dc_ptr
(
dc
);
}
return
ret
;
...
...
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