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
99daef62
Commit
99daef62
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 JobCopies to ticket XML writer.
Signed-off-by:
Dmitry Timoshkov
<
dmitry@baikal.ru
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
bd5a86e5
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
0 deletions
+26
-0
ticket.c
dlls/prntvpt/ticket.c
+26
-0
No files found.
dlls/prntvpt/ticket.c
View file @
99daef62
...
@@ -815,6 +815,16 @@ static HRESULT create_Option(IXMLDOMElement *root, const WCHAR *name, IXMLDOMEle
...
@@ -815,6 +815,16 @@ static HRESULT create_Option(IXMLDOMElement *root, const WCHAR *name, IXMLDOMEle
return
hr
;
return
hr
;
}
}
static
HRESULT
create_ParameterInit
(
IXMLDOMElement
*
root
,
const
WCHAR
*
name
,
IXMLDOMElement
**
child
)
{
HRESULT
hr
;
hr
=
create_element
(
root
,
L"psf:ParameterInit"
,
child
);
if
(
hr
!=
S_OK
)
return
hr
;
return
add_attribute
(
*
child
,
L"name"
,
name
);
}
static
HRESULT
create_ScoredProperty
(
IXMLDOMElement
*
root
,
const
WCHAR
*
name
,
IXMLDOMElement
**
child
)
static
HRESULT
create_ScoredProperty
(
IXMLDOMElement
*
root
,
const
WCHAR
*
name
,
IXMLDOMElement
**
child
)
{
{
HRESULT
hr
;
HRESULT
hr
;
...
@@ -971,6 +981,20 @@ static HRESULT write_JobInputBin(IXMLDOMElement *root, const struct ticket *tick
...
@@ -971,6 +981,20 @@ static HRESULT write_JobInputBin(IXMLDOMElement *root, const struct ticket *tick
return
hr
;
return
hr
;
}
}
static
HRESULT
write_JobCopies
(
IXMLDOMElement
*
root
,
const
struct
ticket
*
ticket
)
{
IXMLDOMElement
*
parameter
;
HRESULT
hr
;
hr
=
create_ParameterInit
(
root
,
L"psk:JobCopiesAllDocuments"
,
&
parameter
);
if
(
hr
!=
S_OK
)
return
hr
;
hr
=
write_int_value
(
parameter
,
ticket
->
job
.
copies
);
IXMLDOMElement_Release
(
parameter
);
return
hr
;
}
static
HRESULT
write_attributes
(
IXMLDOMElement
*
element
)
static
HRESULT
write_attributes
(
IXMLDOMElement
*
element
)
{
{
HRESULT
hr
;
HRESULT
hr
;
...
@@ -1029,6 +1053,8 @@ static HRESULT write_ticket(IStream *stream, const struct ticket *ticket, EPrint
...
@@ -1029,6 +1053,8 @@ static HRESULT write_ticket(IStream *stream, const struct ticket *ticket, EPrint
{
{
hr
=
write_JobInputBin
(
root
,
ticket
);
hr
=
write_JobInputBin
(
root
,
ticket
);
if
(
hr
!=
S_OK
)
goto
fail
;
if
(
hr
!=
S_OK
)
goto
fail
;
hr
=
write_JobCopies
(
root
,
ticket
);
if
(
hr
!=
S_OK
)
goto
fail
;
}
}
hr
=
IStream_Write
(
stream
,
xmldecl
,
strlen
(
xmldecl
),
NULL
);
hr
=
IStream_Write
(
stream
,
xmldecl
,
strlen
(
xmldecl
),
NULL
);
...
...
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