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
de5316b8
Commit
de5316b8
authored
Jan 29, 2002
by
Mike McCormack
Committed by
Alexandre Julliard
Jan 29, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added stubs for NdrDllCanUnloadNow and NdrDllGetClassObject.
parent
000b180a
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
37 additions
and
4 deletions
+37
-4
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+3
-3
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+34
-1
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
de5316b8
...
...
@@ -23,8 +23,8 @@ debug_channels (ole)
@ stub MqGetContext # win9x
@ stub MqRegisterQueue # win9x
@ st
ub
NdrDllCanUnloadNow
@ st
ub
NdrDllGetClassObject
@ st
dcall NdrDllCanUnloadNow(ptr)
NdrDllCanUnloadNow
@ st
dcall NdrDllGetClassObject()
NdrDllGetClassObject
@ stdcall NdrDllRegisterProxy(long ptr ptr) NdrDllRegisterProxy
@ stub NdrDllUnregisterProxy
...
...
@@ -36,7 +36,7 @@ debug_channels (ole)
@ stub RpcAsyncInitializeHandle
@ stub RpcAsyncRegisterInfo
@ stub RpcBindingCopy
@ st
ub
RpcBindingFree
@ st
dcall RpcBindingFree(ptr)
RpcBindingFree
@ stdcall RpcBindingFromStringBindingA(str ptr) RpcBindingFromStringBindingA
@ stdcall RpcBindingFromStringBindingW(wstr ptr) RpcBindingFromStringBindingW
@ stub RpcBindingInqAuthClientA
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
de5316b8
...
...
@@ -18,6 +18,10 @@
#include "winbase.h"
#include "rpc.h"
#include "ole2.h"
#include "rpcndr.h"
#include "rpcproxy.h"
#ifdef HAVE_SYS_FILE_H
# include <sys/file.h>
#endif
...
...
@@ -342,7 +346,7 @@ RPC_STATUS WINAPI UuidToStringA(UUID *Uuid, unsigned char** StringUuid)
*/
HRESULT
WINAPI
NdrDllRegisterProxy
(
HMODULE
hDll
,
/* [in] */
void
**
pProxyFileList
,
/* [???] FIXME: const ProxyFileInfo **
*/
const
ProxyFileInfo
**
pProxyFileList
,
/* [in]
*/
const
CLSID
*
pclsid
/* [in] */
)
{
...
...
@@ -504,6 +508,14 @@ RPC_STATUS WINAPI RpcStringBindingComposeW( LPWSTR ObjUuid, LPWSTR Protseq, LPWS
}
/***********************************************************************
* RpcBindingFree (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcBindingFree
(
/*RPC_BINDING_HANDLE* */
void
*
Binding
)
{
FIXME
(
"(%p): stub
\n
"
,
Binding
);
return
RPC_S_OK
;
}
/***********************************************************************
* RpcBindingFromStringBindingA (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcBindingFromStringBindingA
(
LPSTR
StringBinding
,
RPC_BINDING_HANDLE
*
Binding
)
...
...
@@ -522,3 +534,24 @@ RPC_STATUS WINAPI RpcBindingFromStringBindingW( LPWSTR StringBinding, RPC_BINDIN
return
RPC_S_INVALID_STRING_BINDING
;
/* As good as any failure code */
}
/***********************************************************************
* NdrDllCanUnloadNow (RPCRT4.@)
*/
HRESULT
WINAPI
NdrDllCanUnloadNow
(
CStdPSFactoryBuffer
*
pPSFactoryBuffer
)
{
FIXME
(
"%p
\n
"
,
pPSFactoryBuffer
);
return
FALSE
;
}
HRESULT
WINAPI
NdrDllGetClassObject
(
REFCLSID
rclsid
,
REFIID
riid
,
LPVOID
*
ppv
,
const
ProxyFileInfo
**
pProxyFileList
,
const
CLSID
*
pclsid
,
CStdPSFactoryBuffer
*
pPSFactoryBuffer
)
{
if
(
ppv
)
*
ppv
=
NULL
;
return
RPC_S_UNKNOWN_IF
;
}
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