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
cbab7705
Commit
cbab7705
authored
May 18, 2000
by
Patrik Stridvall
Committed by
Alexandre Julliard
May 18, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed issues found by winapi_test.
parent
e4174d5d
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
printdrv.c
misc/printdrv.c
+5
-5
No files found.
misc/printdrv.c
View file @
cbab7705
...
...
@@ -73,7 +73,7 @@ INT WINAPI StartDocA(HDC hdc, const DOCINFOA* doc)
TRACE
(
"DocName = '%s' Output = '%s' Datatype = '%s'
\n
"
,
doc
->
lpszDocName
,
doc
->
lpszOutput
,
doc
->
lpszDatatype
);
if
(
!
dc
)
return
0
;
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pStartDoc
)
return
dc
->
funcs
->
pStartDoc
(
dc
,
doc
);
...
...
@@ -128,7 +128,7 @@ INT16 WINAPI EndDoc16(HDC16 hdc)
INT
WINAPI
EndDoc
(
HDC
hdc
)
{
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
!
dc
)
return
0
;
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pEndDoc
)
return
dc
->
funcs
->
pEndDoc
(
dc
);
...
...
@@ -152,7 +152,7 @@ INT16 WINAPI StartPage16(HDC16 hdc)
INT
WINAPI
StartPage
(
HDC
hdc
)
{
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
!
dc
)
return
0
;
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pStartPage
)
return
dc
->
funcs
->
pStartPage
(
dc
);
...
...
@@ -177,7 +177,7 @@ INT16 WINAPI EndPage16( HDC16 hdc )
INT
WINAPI
EndPage
(
HDC
hdc
)
{
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
!
dc
)
return
0
;
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pEndPage
)
return
dc
->
funcs
->
pEndPage
(
dc
);
...
...
@@ -199,7 +199,7 @@ INT16 WINAPI AbortDoc16(HDC16 hdc)
INT
WINAPI
AbortDoc
(
HDC
hdc
)
{
DC
*
dc
=
DC_GetDCPtr
(
hdc
);
if
(
!
dc
)
return
0
;
if
(
!
dc
)
return
SP_ERROR
;
if
(
dc
->
funcs
->
pAbortDoc
)
return
dc
->
funcs
->
pAbortDoc
(
dc
);
...
...
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