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
215b69e3
Commit
215b69e3
authored
Dec 15, 2010
by
Hans Leidekker
Committed by
Alexandre Julliard
Dec 15, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub implementation of RpcMgmtSetAuthorizationFn.
parent
942e2b2a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
14 additions
and
1 deletion
+14
-1
rpc_server.c
dlls/rpcrt4/rpc_server.c
+9
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcdce.h
include/rpcdce.h
+4
-0
No files found.
dlls/rpcrt4/rpc_server.c
View file @
215b69e3
...
...
@@ -1622,6 +1622,15 @@ RPC_STATUS WINAPI RpcMgmtIsServerListening(RPC_BINDING_HANDLE Binding)
}
/***********************************************************************
* RpcMgmtSetAuthorizationFn (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcMgmtSetAuthorizationFn
(
RPC_MGMT_AUTHORIZATION_FN
fn
)
{
FIXME
(
"(%p): stub
\n
"
,
fn
);
return
RPC_S_OK
;
}
/***********************************************************************
* RpcMgmtSetServerStackSize (RPCRT4.@)
*/
RPC_STATUS
WINAPI
RpcMgmtSetServerStackSize
(
ULONG
ThreadStackSize
)
...
...
dlls/rpcrt4/rpcrt4.spec
View file @
215b69e3
...
...
@@ -402,7 +402,7 @@
@ stub RpcMgmtInqServerPrincNameW
@ stdcall RpcMgmtInqStats(ptr ptr)
@ stdcall RpcMgmtIsServerListening(ptr)
@ st
ub RpcMgmtSetAuthorizationFn
@ st
dcall RpcMgmtSetAuthorizationFn(ptr)
@ stdcall RpcMgmtSetCancelTimeout(long)
@ stdcall RpcMgmtSetComTimeout(ptr long)
@ stdcall RpcMgmtSetServerStackSize(long)
...
...
include/rpcdce.h
View file @
215b69e3
...
...
@@ -393,6 +393,10 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcMgmtEnableIdleCleanup
(
void
);
typedef
int
(
__RPC_API
*
RPC_MGMT_AUTHORIZATION_FN
)(
RPC_BINDING_HANDLE
,
ULONG
,
RPC_STATUS
*
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcMgmtSetAuthorizationFn
(
RPC_MGMT_AUTHORIZATION_FN
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcMgmtSetCancelTimeout
(
LONG
);
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