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
Releases
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
Johnny Cai
wine
Commits
b71535eb
Commit
b71535eb
authored
22 years ago
by
Gregory M. Turner
Committed by
Alexandre Julliard
22 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Stubs for RpcServerUseProtseqA, RpcServerUseProtseqW.
parent
b0719b12
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
dlls/rpcrt4/rpc_server.c
+18
-0
18 additions, 0 deletions
dlls/rpcrt4/rpc_server.c
dlls/rpcrt4/rpcrt4.spec
+2
-2
2 additions, 2 deletions
dlls/rpcrt4/rpcrt4.spec
include/rpcdce.h
+8
-0
8 additions, 0 deletions
include/rpcdce.h
with
28 additions
and
2 deletions
dlls/rpcrt4/rpc_server.c
+
18
−
0
View file @
b71535eb
...
...
@@ -435,6 +435,24 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( LPWSTR Protseq, UINT MaxCalls, LPWST
return
RPCRT4_use_protseq
(
ps
);
}
/***********************************************************************
* RpcServerUseProtseqA (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcServerUseProtseqA
(
LPSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
)
{
FIXME
(
"stub
\n
"
);
return
RPC_S_OK
;
}
/***********************************************************************
* RpcServerUseProtseqW (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcServerUseProtseqW
(
LPWSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
)
{
FIXME
(
"stub
\n
"
);
return
RPC_S_OK
;
}
/***********************************************************************
* RpcServerRegisterIf (RPCRT4.@)
*/
...
...
This diff is collapsed.
Click to expand it.
dlls/rpcrt4/rpcrt4.spec
+
2
−
2
View file @
b71535eb
...
...
@@ -121,8 +121,8 @@ init RPCRT4_LibMain
@ stub RpcServerUseAllProtseqsEx
@ stub RpcServerUseAllProtseqsIf
@ stub RpcServerUseAllProtseqsIfEx
@ st
ub
RpcServerUseProtseqA
@ st
ub
RpcServerUseProtseqW
@ st
dcall RpcServerUseProtseqA(str long ptr)
RpcServerUseProtseqA
@ st
dcall RpcServerUseProtseqW(wstr long ptr)
RpcServerUseProtseqW
@ stub RpcServerUseProtseqExA
@ stub RpcServerUseProtseqExW
@ stdcall RpcServerUseProtseqEpA(str long str ptr) RpcServerUseProtseqEpA
...
...
This diff is collapsed.
Click to expand it.
include/rpcdce.h
+
8
−
0
View file @
b71535eb
...
...
@@ -183,6 +183,14 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RpcServerRegisterIf2
(
RPC_IF_HANDLE
IfSpec
,
UUID
*
MgrTypeUuid
,
RPC_MGR_EPV
*
MgrEpv
,
UINT
Flags
,
UINT
MaxCalls
,
UINT
MaxRpcSize
,
RPC_IF_CALLBACK_FN
*
IfCallbackFn
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerUseProtseqA
(
LPSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerUseProtseqW
(
LPWSTR
Protseq
,
unsigned
int
MaxCalls
,
void
*
SecurityDescriptor
);
#define RpcServerUseProtseq WINELIB_NAME_AW(RpcServerUseProtseq)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcServerUseProtseqEpA
(
LPSTR
Protseq
,
UINT
MaxCalls
,
LPSTR
Endpoint
,
LPVOID
SecurityDescriptor
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
...
...
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