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
10c878a4
Commit
10c878a4
authored
May 29, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jun 01, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ole32: Implemented some proxy/stubs methods.
parent
0bed1bfd
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
8 deletions
+8
-8
usrmarshal.c
dlls/ole32/usrmarshal.c
+8
-8
No files found.
dlls/ole32/usrmarshal.c
View file @
10c878a4
...
...
@@ -3011,15 +3011,15 @@ HRESULT CALLBACK IOleInPlaceActiveObject_TranslateAccelerator_Proxy(
IOleInPlaceActiveObject
*
This
,
LPMSG
lpmsg
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p %p)
\n
"
,
This
,
lpmsg
);
return
IOleInPlaceActiveObject_RemoteTranslateAccelerator_Proxy
(
This
)
;
}
HRESULT
__RPC_STUB
IOleInPlaceActiveObject_TranslateAccelerator_Stub
(
IOleInPlaceActiveObject
*
This
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p)
\n
"
,
This
);
return
S_FALSE
;
}
HRESULT
CALLBACK
IOleInPlaceActiveObject_ResizeBorder_Proxy
(
...
...
@@ -3049,8 +3049,8 @@ HRESULT CALLBACK IOleCache2_UpdateCache_Proxy(
DWORD
grfUpdf
,
LPVOID
pReserved
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %p, 0x%08x, %p)
\n
"
,
This
,
pDataObject
,
grfUpdf
,
pReserved
);
return
IOleCache2_RemoteUpdateCache_Proxy
(
This
,
pDataObject
,
grfUpdf
,
(
LONG_PTR
)
pReserved
)
;
}
HRESULT
__RPC_STUB
IOleCache2_UpdateCache_Stub
(
...
...
@@ -3059,8 +3059,8 @@ HRESULT __RPC_STUB IOleCache2_UpdateCache_Stub(
DWORD
grfUpdf
,
LONG_PTR
pReserved
)
{
FIXME
(
":stub
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %p, 0x%08x, %li)
\n
"
,
This
,
pDataObject
,
grfUpdf
,
pReserved
);
return
IOleCache2_UpdateCache
(
This
,
pDataObject
,
grfUpdf
,
(
void
*
)
pReserved
)
;
}
HRESULT
CALLBACK
IEnumOLEVERB_Next_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