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
739d8936
Commit
739d8936
authored
Aug 18, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Aug 19, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Implement RpcBindingReset.
parent
e9853952
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
rpc_binding.c
dlls/rpcrt4/rpc_binding.c
+17
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
No files found.
dlls/rpcrt4/rpc_binding.c
View file @
739d8936
...
...
@@ -1013,6 +1013,23 @@ RPC_STATUS RPC_ENTRY RpcBindingCopy(
}
/***********************************************************************
* RpcBindingReset (RPCRT4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcBindingReset
(
RPC_BINDING_HANDLE
Binding
)
{
RpcBinding
*
bind
=
Binding
;
TRACE
(
"(%p)
\n
"
,
Binding
);
RPCRT4_strfree
(
bind
->
Endpoint
);
bind
->
Endpoint
=
NULL
;
if
(
bind
->
Assoc
)
RpcAssoc_Release
(
bind
->
Assoc
);
bind
->
Assoc
=
NULL
;
return
RPC_S_OK
;
}
/***********************************************************************
* RpcImpersonateClient (RPCRT4.@)
*
* Impersonates the client connected via a binding handle so that security
...
...
dlls/rpcrt4/rpcrt4.spec
View file @
739d8936
...
...
@@ -350,7 +350,7 @@
@ stdcall RpcBindingInqAuthInfoW(ptr ptr ptr ptr ptr ptr)
@ stdcall RpcBindingInqObject(ptr ptr)
@ stub RpcBindingInqOption
@ st
ub RpcBindingReset
@ st
dcall RpcBindingReset(ptr)
@ stub RpcBindingServerFromClient
@ stdcall RpcBindingSetAuthInfoA(ptr str long long ptr long)
@ stdcall RpcBindingSetAuthInfoExA(ptr str long long ptr long ptr)
...
...
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