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
7ad36eab
Commit
7ad36eab
authored
Nov 06, 2007
by
Rob Shearman
Committed by
Alexandre Julliard
Nov 07, 2007
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add stubs for RpcMgmtSetCancelTimeout and RpcCancelThread.
parent
ebe885d7
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
20 additions
and
2 deletions
+20
-2
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+2
-2
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+18
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
7ad36eab
...
...
@@ -395,7 +395,7 @@
@ stdcall RpcBindingToStringBindingW(ptr ptr)
@ stdcall RpcBindingVectorFree(ptr)
@ stub RpcCancelAsyncCall
@ st
ub RpcCancelThread
@ st
dcall RpcCancelThread(ptr)
@ stub RpcCancelThreadEx
@ stub RpcCertGeneratePrincipalNameA
@ stub RpcCertGeneratePrincipalNameW
...
...
@@ -438,7 +438,7 @@
@ stub RpcMgmtInqStats
@ stdcall RpcMgmtIsServerListening(ptr)
@ stub RpcMgmtSetAuthorizationFn
@ st
ub RpcMgmtSetCancelTimeout
@ st
dcall RpcMgmtSetCancelTimeout(long)
@ stdcall RpcMgmtSetComTimeout(ptr long)
@ stub RpcMgmtSetParameter # win9x
@ stdcall RpcMgmtSetServerStackSize(long)
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
7ad36eab
...
...
@@ -837,3 +837,21 @@ RPC_STATUS RPC_ENTRY RpcErrorStartEnumeration(void** EnumHandle)
FIXME
(
"(%p): stub
\n
"
,
EnumHandle
);
return
RPC_S_ENTRY_NOT_FOUND
;
}
/******************************************************************************
* RpcMgmtSetCancelTimeout (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcMgmtSetCancelTimeout
(
LONG
Timeout
)
{
FIXME
(
"(%d): stub
\n
"
,
Timeout
);
return
RPC_S_OK
;
}
/******************************************************************************
* RpcCancelThread (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcCancelThread
(
HANDLE
ThreadHandle
)
{
FIXME
(
"(%p): stub
\n
"
,
ThreadHandle
);
return
RPC_S_OK
;
}
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