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
0bed1bfd
Commit
0bed1bfd
authored
May 29, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Implemented a couple more proxy/stub methods.
parent
7efe31d9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
23 additions
and
7 deletions
+23
-7
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+23
-7
No files found.
dlls/oleaut32/usrmarshal.c
View file @
0bed1bfd
...
...
@@ -2313,15 +2313,17 @@ void CALLBACK IAdviseSinkEx_OnViewStatusChange_Proxy(
IAdviseSinkEx
*
This
,
DWORD
dwViewStatus
)
{
FIXME
(
"not implemented
\n
"
);
TRACE
(
"(%p, 0x%08x)
\n
"
,
This
,
dwViewStatus
);
IAdviseSinkEx_RemoteOnViewStatusChange_Proxy
(
This
,
dwViewStatus
);
}
HRESULT
__RPC_STUB
IAdviseSinkEx_OnViewStatusChange_Stub
(
IAdviseSinkEx
*
This
,
DWORD
dwViewStatus
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, 0x%08x)
\n
"
,
This
,
dwViewStatus
);
IAdviseSinkEx_OnViewStatusChange
(
This
,
dwViewStatus
);
return
S_OK
;
}
HRESULT
CALLBACK
IEnumOleUndoUnits_Next_Proxy
(
...
...
@@ -2330,8 +2332,14 @@ HRESULT CALLBACK IEnumOleUndoUnits_Next_Proxy(
IOleUndoUnit
**
rgElt
,
ULONG
*
pcEltFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
ULONG
fetched
;
TRACE
(
"(%u, %p %p)
\n
"
,
cElt
,
rgElt
,
pcEltFetched
);
if
(
!
pcEltFetched
)
pcEltFetched
=
&
fetched
;
return
IEnumOleUndoUnits_RemoteNext_Proxy
(
This
,
cElt
,
rgElt
,
pcEltFetched
);
}
HRESULT
__RPC_STUB
IEnumOleUndoUnits_Next_Stub
(
...
...
@@ -2340,8 +2348,16 @@ HRESULT __RPC_STUB IEnumOleUndoUnits_Next_Stub(
IOleUndoUnit
**
rgElt
,
ULONG
*
pcEltFetched
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
HRESULT
hr
;
TRACE
(
"(%u, %p, %p)
\n
"
,
cElt
,
rgElt
,
pcEltFetched
);
*
pcEltFetched
=
0
;
hr
=
IEnumOleUndoUnits_Next
(
This
,
cElt
,
rgElt
,
pcEltFetched
);
if
(
hr
==
S_OK
)
*
pcEltFetched
=
cElt
;
return
hr
;
}
HRESULT
CALLBACK
IQuickActivate_QuickActivate_Proxy
(
...
...
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