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
6f475608
Commit
6f475608
authored
May 04, 2023
by
Piotr Caban
Committed by
Alexandre Julliard
May 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Remove no longer used NEXTBAND escape.
parent
9adaca0f
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
17 deletions
+0
-17
escape.c
dlls/wineps.drv/escape.c
+0
-15
printproc.c
dlls/wineps.drv/printproc.c
+0
-1
psdrv.h
dlls/wineps.drv/psdrv.h
+0
-1
No files found.
dlls/wineps.drv/escape.c
View file @
6f475608
...
...
@@ -166,20 +166,6 @@ INT CDECL PSDRV_ExtEscape( PHYSDEV dev, INT nEscape, INT cbInput, LPCVOID in_dat
*
obi
=
*
ibi
;
return
1
;
}
case
NEXTBAND
:
{
RECT
*
r
=
out_data
;
if
(
!
physDev
->
job
.
banding
)
{
physDev
->
job
.
banding
=
TRUE
;
SetRect
(
r
,
0
,
0
,
physDev
->
horzRes
,
physDev
->
vertRes
);
TRACE
(
"NEXTBAND returning %s
\n
"
,
wine_dbgstr_rect
(
r
));
return
1
;
}
SetRectEmpty
(
r
);
TRACE
(
"NEXTBAND rect to 0,0 - 0,0
\n
"
);
physDev
->
job
.
banding
=
FALSE
;
return
EndPage
(
dev
->
hdc
);
}
case
SETCOPYCOUNT
:
{
...
...
@@ -477,7 +463,6 @@ INT CDECL PSDRV_StartDoc( PHYSDEV dev, const DOCINFOW *doc )
return
0
;
}
physDev
->
job
.
banding
=
FALSE
;
physDev
->
job
.
OutOfPage
=
TRUE
;
physDev
->
job
.
PageNo
=
0
;
physDev
->
job
.
quiet
=
FALSE
;
...
...
dlls/wineps.drv/printproc.c
View file @
6f475608
...
...
@@ -3217,7 +3217,6 @@ BOOL WINAPI PrintDocumentOnPrintProcessor(HANDLE pp, WCHAR *doc_name)
WARN
(
"Failed to write header
\n
"
);
goto
cleanup
;
}
data
->
pdev
->
job
.
banding
=
FALSE
;
data
->
pdev
->
job
.
OutOfPage
=
TRUE
;
data
->
pdev
->
job
.
PageNo
=
0
;
data
->
pdev
->
job
.
quiet
=
FALSE
;
...
...
dlls/wineps.drv/psdrv.h
View file @
6f475608
...
...
@@ -353,7 +353,6 @@ typedef struct {
DWORD
id
;
/* Job id */
HANDLE
hprinter
;
/* Printer handle */
LPWSTR
doc_name
;
/* Document Name */
BOOL
banding
;
/* Have we received a NEXTBAND */
BOOL
OutOfPage
;
/* Page header not sent yet */
INT
PageNo
;
BOOL
quiet
;
/* Don't actually output anything */
...
...
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