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
5dec0a72
Commit
5dec0a72
authored
Nov 15, 2000
by
Marcus Meissner
Committed by
Alexandre Julliard
Nov 15, 2000
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some rpcrt4 stubs.
parent
3101315b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
0 deletions
+28
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+19
-0
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+9
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
5dec0a72
...
...
@@ -10,3 +10,22 @@ debug_channels (ole)
@ stdcall UuidCreate(ptr) UuidCreate
@ stdcall RpcStringFreeA(ptr) RpcStringFreeA
@ stdcall UuidToStringA(ptr ptr) UuidToStringA
@ stub NdrCStdStubBuffer_Release
@ stub NdrDllGetClassObject
@ stub RpcRaiseException
@ stub NdrClientCall
@ stub NdrOleAllocate
@ stub NdrOleFree
@ stub IUnknown_QueryInterface_Proxy
@ stub IUnknown_AddRef_Proxy
@ stub IUnknown_Release_Proxy
@ stub CStdStubBuffer_QueryInterface
@ stub CStdStubBuffer_AddRef
@ stub CStdStubBuffer_Connect
@ stub CStdStubBuffer_Disconnect
@ stub CStdStubBuffer_Invoke
@ stub CStdStubBuffer_IsIIDSupported
@ stub CStdStubBuffer_CountRefs
@ stub CStdStubBuffer_DebugServerQueryInterface
@ stub CStdStubBuffer_DebugServerRelease
@ stdcall NdrDllRegisterProxy(long ptr ptr) NdrDllRegisterProxy
dlls/rpcrt4/rpcrt4_main.c
View file @
5dec0a72
...
...
@@ -314,3 +314,12 @@ RPC_STATUS WINAPI UuidToStringA(UUID *Uuid, unsigned char** StringUuid)
return
S_OK
;
/*FIXME: this should be RPC_S_OK */
}
WINAPI
HRESULT
NdrDllRegisterProxy
(
HMODULE
hDll
,
/*const ProxyFileInfo */
void
**
pProxyFileList
,
const
CLSID
*
pclsid
)
{
FIXME
(
"(%x,%p,%s), stub!
\n
"
,
hDll
,
pProxyFileList
,
debugstr_guid
(
pclsid
));
return
S_OK
;
}
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