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
1d91c844
Commit
1d91c844
authored
May 20, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
May 20, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
oleaut32: Added missing IPersistMemory proxy/stub methods.
parent
f832f85c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
8 deletions
+16
-8
usrmarshal.c
dlls/oleaut32/usrmarshal.c
+16
-8
No files found.
dlls/oleaut32/usrmarshal.c
View file @
1d91c844
...
...
@@ -2268,8 +2268,12 @@ HRESULT CALLBACK IPersistMemory_Load_Proxy(
LPVOID
pMem
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %u)
\n
"
,
pMem
,
cbSize
);
if
(
!
pMem
)
return
E_POINTER
;
return
IPersistMemory_RemoteLoad_Proxy
(
This
,
pMem
,
cbSize
);
}
HRESULT
__RPC_STUB
IPersistMemory_Load_Stub
(
...
...
@@ -2277,8 +2281,8 @@ HRESULT __RPC_STUB IPersistMemory_Load_Stub(
BYTE
*
pMem
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %u)
\n
"
,
pMem
,
cbSize
);
return
IPersistMemory_Load
(
This
,
pMem
,
cbSize
)
;
}
HRESULT
CALLBACK
IPersistMemory_Save_Proxy
(
...
...
@@ -2287,8 +2291,12 @@ HRESULT CALLBACK IPersistMemory_Save_Proxy(
BOOL
fClearDirty
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %d, %u)
\n
"
,
pMem
,
fClearDirty
,
cbSize
);
if
(
!
pMem
)
return
E_POINTER
;
return
IPersistMemory_RemoteSave_Proxy
(
This
,
pMem
,
fClearDirty
,
cbSize
);
}
HRESULT
__RPC_STUB
IPersistMemory_Save_Stub
(
...
...
@@ -2297,8 +2305,8 @@ HRESULT __RPC_STUB IPersistMemory_Save_Stub(
BOOL
fClearDirty
,
ULONG
cbSize
)
{
FIXME
(
"not implemented
\n
"
);
return
E_NOTIMPL
;
TRACE
(
"(%p, %d, %u)
\n
"
,
pMem
,
fClearDirty
,
cbSize
);
return
IPersistMemory_Save
(
This
,
pMem
,
fClearDirty
,
cbSize
)
;
}
void
CALLBACK
IAdviseSinkEx_OnViewStatusChange_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