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
d2cb9ec5
Commit
d2cb9ec5
authored
Jul 17, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jul 18, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Display a big message box if the user tries to use typelib
marshaling in native oleaut32 with builtin rpcrt4 to tell them what is wrong.
parent
9318cb0f
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
0 deletions
+13
-0
cproxy.c
dlls/rpcrt4/cproxy.c
+13
-0
No files found.
dlls/rpcrt4/cproxy.c
View file @
d2cb9ec5
...
...
@@ -344,6 +344,19 @@ HRESULT WINAPI
CreateProxyFromTypeInfo
(
LPTYPEINFO
pTypeInfo
,
LPUNKNOWN
pUnkOuter
,
REFIID
riid
,
LPRPCPROXYBUFFER
*
ppProxy
,
LPVOID
*
ppv
)
{
typedef
INT
(
WINAPI
*
MessageBoxA
)(
HWND
,
LPCSTR
,
LPCSTR
,
UINT
);
HMODULE
hUser32
=
LoadLibraryA
(
"user32"
);
MessageBoxA
pMessageBoxA
=
GetProcAddress
(
hUser32
,
"MessageBoxA"
);
FIXME
(
"%p %p %s %p %p
\n
"
,
pTypeInfo
,
pUnkOuter
,
debugstr_guid
(
riid
),
ppProxy
,
ppv
);
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
;
}
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