Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
b71535eb
Commit
b71535eb
authored
Oct 21, 2002
by
Greg Turner
Committed by
Alexandre Julliard
Oct 21, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Stubs for RpcServerUseProtseqA, RpcServerUseProtseqW.
parent
b0719b12
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
28 additions
and
2 deletions
+28
-2
rpc_server.c
dlls/rpcrt4/rpc_server.c
+18
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
rpcdce.h
include/rpcdce.h
+8
-0
No files found.
dlls/rpcrt4/rpc_server.c
View file @
b71535eb
...
...
@@ -436,6 +436,24 @@ RPC_STATUS WINAPI RpcServerUseProtseqEpExW( LPWSTR Protseq, UINT MaxCalls, LPWST
}
/***********************************************************************
* 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.@)
*/
RPC_STATUS
WINAPI
RpcServerRegisterIf
(
RPC_IF_HANDLE
IfSpec
,
UUID
*
MgrTypeUuid
,
RPC_MGR_EPV
*
MgrEpv
)
...
...
dlls/rpcrt4/rpcrt4.spec
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
...
...
include/rpcdce.h
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
...
...
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