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
Lorenzo Ferrillo
wine
Commits
030c75a8
Commit
030c75a8
authored
13 years ago
by
André Zwing
Committed by
Alexandre Julliard
13 years ago
Browse files
Options
Downloads
Patches
Plain Diff
rpcrt4: Implement RpcEpRegisterNoReplaceW.
parent
d2f3463a
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/rpcrt4/rpc_epmap.c
+15
-0
15 additions, 0 deletions
dlls/rpcrt4/rpc_epmap.c
dlls/rpcrt4/rpcrt4.spec
+1
-1
1 addition, 1 deletion
dlls/rpcrt4/rpcrt4.spec
with
16 additions
and
1 deletion
dlls/rpcrt4/rpc_epmap.c
+
15
−
0
View file @
030c75a8
...
...
@@ -302,6 +302,21 @@ RPC_STATUS WINAPI RpcEpRegisterW( RPC_IF_HANDLE IfSpec, RPC_BINDING_VECTOR *Bind
return
status
;
}
/***********************************************************************
* RpcEpRegisterNoReplaceW (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcEpRegisterNoReplaceW
(
RPC_IF_HANDLE
IfSpec
,
RPC_BINDING_VECTOR
*
BindingVector
,
UUID_VECTOR
*
UuidVector
,
RPC_WSTR
Annotation
)
{
LPSTR
annA
=
RPCRT4_strdupWtoA
(
Annotation
);
RPC_STATUS
status
;
status
=
epm_register
(
IfSpec
,
BindingVector
,
UuidVector
,
(
RPC_CSTR
)
annA
,
FALSE
);
HeapFree
(
GetProcessHeap
(),
0
,
annA
);
return
status
;
}
/***********************************************************************
* RpcEpUnregister (RPCRT4.@)
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/rpcrt4/rpcrt4.spec
+
1
−
1
View file @
030c75a8
...
...
@@ -370,7 +370,7 @@
@ stdcall RpcCompleteAsyncCall(ptr ptr) RpcAsyncCompleteCall
@ stdcall RpcEpRegisterA(ptr ptr ptr str)
@ stdcall RpcEpRegisterNoReplaceA(ptr ptr ptr str)
@ st
ub
RpcEpRegisterNoReplaceW
@ st
dcall
RpcEpRegisterNoReplaceW
(ptr ptr ptr wstr)
@ stdcall RpcEpRegisterW(ptr ptr ptr wstr)
@ stdcall RpcEpResolveBinding(ptr ptr)
@ stdcall RpcEpUnregister(ptr ptr ptr)
...
...
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