Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Package Registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Yoann Laissus
wine
Commits
de5316b8
Commit
de5316b8
authored
23 years ago
by
Michael McCormack
Committed by
Alexandre Julliard
23 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Added stubs for NdrDllCanUnloadNow and NdrDllGetClassObject.
parent
000b180a
Loading
Loading
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/rpcrt4/rpcrt4.spec
+3
-3
3 additions, 3 deletions
dlls/rpcrt4/rpcrt4.spec
dlls/rpcrt4/rpcrt4_main.c
+34
-1
34 additions, 1 deletion
dlls/rpcrt4/rpcrt4_main.c
with
37 additions
and
4 deletions
dlls/rpcrt4/rpcrt4.spec
+
3
−
3
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
...
...
This diff is collapsed.
Click to expand it.
dlls/rpcrt4/rpcrt4_main.c
+
34
−
1
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] */
)
{
...
...
@@ -503,6 +507,14 @@ RPC_STATUS WINAPI RpcStringBindingComposeW( LPWSTR ObjUuid, LPWSTR Protseq, LPWS
return
RPC_S_INVALID_STRING_UUID
;
/* Failure */
}
/***********************************************************************
* RpcBindingFree (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcBindingFree
(
/*RPC_BINDING_HANDLE* */
void
*
Binding
)
{
FIXME
(
"(%p): stub
\n
"
,
Binding
);
return
RPC_S_OK
;
}
/***********************************************************************
* RpcBindingFromStringBindingA (RPCRT4.@)
*/
...
...
@@ -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
;
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment