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
f848b9f8
Commit
f848b9f8
authored
May 17, 2023
by
Piotr Caban
Committed by
Alexandre Julliard
May 19, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wineps: Move BANDINFOSTRUCT definition to unixlib.c.
parent
7a2b34c3
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
13 deletions
+11
-13
psdrv.h
dlls/wineps.drv/psdrv.h
+0
-9
unixlib.c
dlls/wineps.drv/unixlib.c
+11
-4
No files found.
dlls/wineps.drv/psdrv.h
View file @
f848b9f8
...
@@ -143,15 +143,6 @@ typedef struct _tagPAGESIZE {
...
@@ -143,15 +143,6 @@ typedef struct _tagPAGESIZE {
WORD
WinPage
;
/*eg DMPAPER_A4. Doesn't really belong here */
WORD
WinPage
;
/*eg DMPAPER_A4. Doesn't really belong here */
}
PAGESIZE
;
}
PAGESIZE
;
/* For BANDINFO Escape */
typedef
struct
_BANDINFOSTRUCT
{
BOOL
GraphicsFlag
;
BOOL
TextFlag
;
RECT
GraphicsRect
;
}
BANDINFOSTRUCT
,
*
PBANDINFOSTRUCT
;
typedef
struct
typedef
struct
{
{
struct
list
entry
;
struct
list
entry
;
...
...
dlls/wineps.drv/unixlib.c
View file @
f848b9f8
...
@@ -81,6 +81,13 @@ struct printer_info
...
@@ -81,6 +81,13 @@ struct printer_info
static
struct
list
printer_info_list
=
LIST_INIT
(
printer_info_list
);
static
struct
list
printer_info_list
=
LIST_INIT
(
printer_info_list
);
struct
band_info
{
BOOL
graphics_flag
;
BOOL
text_flag
;
RECT
graphics_rect
;
};
typedef
struct
typedef
struct
{
{
struct
gdi_physdev
dev
;
struct
gdi_physdev
dev
;
...
@@ -714,11 +721,11 @@ static int CDECL ext_escape(PHYSDEV dev, int escape, int input_size, const void
...
@@ -714,11 +721,11 @@ static int CDECL ext_escape(PHYSDEV dev, int escape, int input_size, const void
}
}
case
BANDINFO
:
case
BANDINFO
:
{
{
BANDINFOSTRUCT
*
ibi
=
(
BANDINFOSTRUCT
*
)
input
;
struct
band_info
*
ibi
=
(
struct
band_info
*
)
input
;
BANDINFOSTRUCT
*
obi
=
(
BANDINFOSTRUCT
*
)
output
;
struct
band_info
*
obi
=
(
struct
band_info
*
)
output
;
FIXME
(
"BANDINFO(graphics %d, text %d, rect %s), stub!
\n
"
,
ibi
->
GraphicsF
lag
,
FIXME
(
"BANDINFO(graphics %d, text %d, rect %s), stub!
\n
"
,
ibi
->
graphics_f
lag
,
ibi
->
TextFlag
,
wine_dbgstr_rect
(
&
ibi
->
GraphicsR
ect
));
ibi
->
text_flag
,
wine_dbgstr_rect
(
&
ibi
->
graphics_r
ect
));
*
obi
=
*
ibi
;
*
obi
=
*
ibi
;
return
1
;
return
1
;
}
}
...
...
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