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
9d056eb8
Commit
9d056eb8
authored
Mar 22, 2010
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Mar 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Added stub function CreateStubFromTypeInfo.
parent
4082920c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
22 additions
and
1 deletion
+22
-1
cproxy.c
dlls/rpcrt4/cproxy.c
+21
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
No files found.
dlls/rpcrt4/cproxy.c
View file @
9d056eb8
...
...
@@ -483,3 +483,24 @@ CreateProxyFromTypeInfo( LPTYPEINFO pTypeInfo, LPUNKNOWN pUnkOuter, REFIID riid,
}
return
E_NOTIMPL
;
}
HRESULT
WINAPI
CreateStubFromTypeInfo
(
ITypeInfo
*
pTypeInfo
,
REFIID
riid
,
IUnknown
*
pUnkServer
,
IRpcStubBuffer
**
ppStub
)
{
typedef
INT
(
WINAPI
*
MessageBoxA
)(
HWND
,
LPCSTR
,
LPCSTR
,
UINT
);
HMODULE
hUser32
=
LoadLibraryA
(
"user32"
);
MessageBoxA
pMessageBoxA
=
(
void
*
)
GetProcAddress
(
hUser32
,
"MessageBoxA"
);
FIXME
(
"%p %s %p %p
\n
"
,
pTypeInfo
,
debugstr_guid
(
riid
),
pUnkServer
,
ppStub
);
if
(
pMessageBoxA
)
{
pMessageBoxA
(
NULL
,
"The native implementation of OLEAUT32.DLL cannot be used "
"with Wine's RPCRT4.DLL. Remove OLEAUT32.DLL and try again.
\n
"
,
"Wine: Unimplemented CreateProxyFromTypeInfo"
,
0x10
);
ExitProcess
(
1
);
}
return
E_NOTIMPL
;
}
dlls/rpcrt4/rpcrt4.spec
View file @
9d056eb8
@ stdcall CreateProxyFromTypeInfo(ptr ptr ptr ptr ptr)
@ st
ub CreateStubFromTypeInfo
@ st
dcall CreateStubFromTypeInfo(ptr ptr ptr ptr)
@ stdcall CStdStubBuffer_AddRef(ptr)
@ stdcall CStdStubBuffer_Connect(ptr ptr)
@ stdcall CStdStubBuffer_CountRefs(ptr)
...
...
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