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
ecdaf568
Commit
ecdaf568
authored
Feb 09, 2015
by
Austin English
Committed by
Alexandre Julliard
Feb 10, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub for I_RpcBindingInqLocalClientPID.
parent
b875a4a4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+10
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcdcep.h
include/rpcdcep.h
+3
-0
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
ecdaf568
...
...
@@ -1949,3 +1949,13 @@ RPC_STATUS WINAPI RpcBindingSetOption(RPC_BINDING_HANDLE BindingHandle, ULONG Op
}
return
RPC_S_OK
;
}
/***********************************************************************
* I_RpcBindingInqLocalClientPID (RPCRT4.@)
*/
RPC_STATUS
WINAPI
I_RpcBindingInqLocalClientPID
(
RPC_BINDING_HANDLE
ClientBinding
,
ULONG
*
ClientPID
)
{
FIXME
(
"%p %p: stub
\n
"
,
ClientBinding
,
ClientPID
);
return
RPC_S_INVALID_BINDING
;
}
dlls/rpcrt4/rpcrt4.spec
View file @
ecdaf568
...
...
@@ -29,7 +29,7 @@
@ stub I_RpcBindingInqDynamicEndPoint
@ stub I_RpcBindingInqDynamicEndPointA
@ stub I_RpcBindingInqDynamicEndPointW
@ st
ub I_RpcBindingInqLocalClientPID # wxp
@ st
dcall I_RpcBindingInqLocalClientPID(ptr ptr)
@ stub I_RpcBindingInqSecurityContext
@ stdcall I_RpcBindingInqTransportType(ptr ptr)
@ stub I_RpcBindingInqWireIdForSnego
...
...
include/rpcdcep.h
View file @
ecdaf568
...
...
@@ -221,6 +221,9 @@ RPCRTAPI UINT RPC_ENTRY
#endif
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcBindingInqLocalClientPID
(
RPC_BINDING_HANDLE
Binding
,
ULONG
*
Pid
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
I_RpcBindingInqTransportType
(
RPC_BINDING_HANDLE
Binding
,
unsigned
int
*
Type
);
RPCRTAPI
LONG
RPC_ENTRY
I_RpcMapWin32Status
(
RPC_STATUS
);
...
...
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