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
4f2a3c2c
Commit
4f2a3c2c
authored
Oct 07, 2008
by
Henri Verbeet
Committed by
Alexandre Julliard
Oct 08, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
gdi32: Call AbortProc from StartDoc instead of EndPage.
parent
e20ef501
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
printdrv.c
dlls/gdi32/printdrv.c
+6
-5
No files found.
dlls/gdi32/printdrv.c
View file @
4f2a3c2c
...
...
@@ -77,6 +77,12 @@ INT WINAPI StartDocW(HDC hdc, const DOCINFOW* doc)
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
pAbortProc
&&
!
dc
->
pAbortProc
(
hdc
,
0
))
{
release_dc_ptr
(
dc
);
return
ret
;
}
if
(
dc
->
funcs
->
pStartDoc
)
ret
=
dc
->
funcs
->
pStartDoc
(
dc
->
physDev
,
doc
);
release_dc_ptr
(
dc
);
return
ret
;
...
...
@@ -173,11 +179,6 @@ INT WINAPI EndPage(HDC hdc)
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pEndPage
)
ret
=
dc
->
funcs
->
pEndPage
(
dc
->
physDev
);
if
(
dc
->
pAbortProc
&&
!
dc
->
pAbortProc
(
hdc
,
0
))
{
EndDoc
(
hdc
);
ret
=
0
;
}
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