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
dcfe6648
Commit
dcfe6648
authored
Jun 12, 2015
by
Hans Leidekker
Committed by
Alexandre Julliard
Jun 15, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
qmgr: Implement IBackgroundCopyJobHttpOptions::SetSecurityFlags and…
qmgr: Implement IBackgroundCopyJobHttpOptions::SetSecurityFlags and IBackgroundCopyJobHttpOptions::GetSecurityFlags.
parent
faa65f62
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
4 deletions
+12
-4
job.c
dlls/qmgr/job.c
+12
-4
No files found.
dlls/qmgr/job.c
View file @
dcfe6648
...
...
@@ -992,16 +992,24 @@ static HRESULT WINAPI http_options_SetSecurityFlags(
IBackgroundCopyJobHttpOptions
*
iface
,
ULONG
Flags
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJobHttpOptions
(
iface
);
TRACE
(
"(%p)->(0x%08x)
\n
"
,
iface
,
Flags
);
job
->
http_options
.
flags
=
Flags
;
return
S_OK
;
}
static
HRESULT
WINAPI
http_options_GetSecurityFlags
(
IBackgroundCopyJobHttpOptions
*
iface
,
ULONG
*
pFlags
)
{
FIXME
(
"
\n
"
);
return
E_NOTIMPL
;
BackgroundCopyJobImpl
*
job
=
impl_from_IBackgroundCopyJobHttpOptions
(
iface
);
TRACE
(
"(%p)->(%p)
\n
"
,
iface
,
pFlags
);
*
pFlags
=
job
->
http_options
.
flags
;
return
S_OK
;
}
static
const
IBackgroundCopyJobHttpOptionsVtbl
http_options_vtbl
=
...
...
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