Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
1e9e76e0
Commit
1e9e76e0
authored
Feb 05, 2010
by
Huw Davies
Committed by
Alexandre Julliard
Feb 08, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msdaps: Implement IDBAsynchNotify_OnProgress and OnStop proxies and stubs.
parent
559a7c8f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
8 deletions
+11
-8
usrmarshal.c
dlls/msdaps/usrmarshal.c
+11
-8
No files found.
dlls/msdaps/usrmarshal.c
View file @
1e9e76e0
...
...
@@ -906,32 +906,35 @@ HRESULT CALLBACK IDBAsynchNotify_OnProgress_Proxy(IDBAsynchNotify* This, HCHAPTE
DBCOUNTITEM
ulProgress
,
DBCOUNTITEM
ulProgressMax
,
DBASYNCHPHASE
eAsynchPhase
,
LPOLESTR
pwszStatusText
)
{
FIXME
(
"(%p)->(%lx, %d, %d, %d, %d, %s): stub
\n
"
,
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
TRACE
(
"(%p)->(%lx, %d, %d, %d, %d, %s)
\n
"
,
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
eAsynchPhase
,
debugstr_w
(
pwszStatusText
));
return
E_NOTIMPL
;
return
IDBAsynchNotify_RemoteOnProgress_Proxy
(
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
eAsynchPhase
,
pwszStatusText
);
}
HRESULT
__RPC_STUB
IDBAsynchNotify_OnProgress_Stub
(
IDBAsynchNotify
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
DBCOUNTITEM
ulProgress
,
DBCOUNTITEM
ulProgressMax
,
DBASYNCHPHASE
eAsynchPhase
,
LPOLESTR
pwszStatusText
)
{
FIXME
(
"(%p)->(%lx, %d, %d, %d, %d, %s): stub
\n
"
,
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
TRACE
(
"(%p)->(%lx, %d, %d, %d, %d, %s)
\n
"
,
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
eAsynchPhase
,
debugstr_w
(
pwszStatusText
));
return
E_NOTIMPL
;
return
IDBAsynchNotify_OnProgress
(
This
,
hChapter
,
eOperation
,
ulProgress
,
ulProgressMax
,
eAsynchPhase
,
pwszStatusText
);
}
HRESULT
CALLBACK
IDBAsynchNotify_OnStop_Proxy
(
IDBAsynchNotify
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
HRESULT
hrStatus
,
LPOLESTR
pwszStatusText
)
{
FIXME
(
"(%p)->(%lx, %d, %08x, %s): stub
\n
"
,
This
,
hChapter
,
eOperation
,
hrStatus
,
debugstr_w
(
pwszStatusText
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%lx, %d, %08x, %s)
\n
"
,
This
,
hChapter
,
eOperation
,
hrStatus
,
debugstr_w
(
pwszStatusText
));
return
IDBAsynchNotify_RemoteOnStop_Proxy
(
This
,
hChapter
,
eOperation
,
hrStatus
,
pwszStatusText
)
;
}
HRESULT
__RPC_STUB
IDBAsynchNotify_OnStop_Stub
(
IDBAsynchNotify
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
,
HRESULT
hrStatus
,
LPOLESTR
pwszStatusText
)
{
FIXME
(
"(%p)->(%lx, %d, %08x, %s): stub
\n
"
,
This
,
hChapter
,
eOperation
,
hrStatus
,
debugstr_w
(
pwszStatusText
));
return
E_NOTIMPL
;
TRACE
(
"(%p)->(%lx, %d, %08x, %s)
\n
"
,
This
,
hChapter
,
eOperation
,
hrStatus
,
debugstr_w
(
pwszStatusText
));
return
IDBAsynchNotify_OnStop
(
This
,
hChapter
,
eOperation
,
hrStatus
,
pwszStatusText
)
;
}
HRESULT
CALLBACK
IDBAsynchStatus_Abort_Proxy
(
IDBAsynchStatus
*
This
,
HCHAPTER
hChapter
,
DBASYNCHOP
eOperation
)
...
...
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