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
f81aef72
Commit
f81aef72
authored
Jun 17, 2020
by
Dmitry Timoshkov
Committed by
Alexandre Julliard
Jun 17, 2020
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
prntvpt: Add support for PageOrientation to ticket XML writer.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
0b53ba31
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
0 deletions
+20
-0
ticket.c
dlls/prntvpt/ticket.c
+20
-0
No files found.
dlls/prntvpt/ticket.c
View file @
f81aef72
...
...
@@ -917,6 +917,24 @@ fail:
return
hr
;
}
static
HRESULT
write_PageOrientation
(
IXMLDOMElement
*
root
,
const
struct
ticket
*
ticket
)
{
IXMLDOMElement
*
feature
,
*
option
=
NULL
;
HRESULT
hr
;
hr
=
create_Feature
(
root
,
L"psk:PageOrientation"
,
&
feature
);
if
(
hr
!=
S_OK
)
return
hr
;
if
(
ticket
->
page
.
orientation
==
DMORIENT_PORTRAIT
)
hr
=
create_Option
(
feature
,
L"psk:Portrait"
,
&
option
);
else
/* DMORIENT_LANDSCAPE */
hr
=
create_Option
(
feature
,
L"psk:Landscape"
,
&
option
);
if
(
option
)
IXMLDOMElement_Release
(
option
);
IXMLDOMElement_Release
(
feature
);
return
hr
;
}
static
HRESULT
write_attributes
(
IXMLDOMElement
*
element
)
{
HRESULT
hr
;
...
...
@@ -962,6 +980,8 @@ static HRESULT write_ticket(IStream *stream, const struct ticket *ticket, EPrint
if
(
hr
!=
S_OK
)
goto
fail
;
hr
=
write_PageResolution
(
root
,
ticket
);
if
(
hr
!=
S_OK
)
goto
fail
;
hr
=
write_PageOrientation
(
root
,
ticket
);
if
(
hr
!=
S_OK
)
goto
fail
;
hr
=
IStream_Write
(
stream
,
xmldecl
,
strlen
(
xmldecl
),
NULL
);
if
(
hr
!=
S_OK
)
goto
fail
;
...
...
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