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
f15287de
Commit
f15287de
authored
Mar 17, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Mar 17, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add a stub for RpcCancelThreadEx.
parent
49c68247
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
1 deletion
+11
-1
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+1
-1
rpcrt4_main.c
dlls/rpcrt4/rpcrt4_main.c
+9
-0
rpcdce.h
include/rpcdce.h
+1
-0
No files found.
dlls/rpcrt4/rpcrt4.spec
View file @
f15287de
...
...
@@ -363,7 +363,7 @@
@ stdcall RpcBindingVectorFree(ptr)
@ stdcall RpcCancelAsyncCall(ptr long) RpcAsyncCancelCall
@ stdcall RpcCancelThread(ptr)
@ st
ub RpcCancelThreadEx
@ st
dcall RpcCancelThreadEx(ptr long)
@ stub RpcCertGeneratePrincipalNameA
@ stub RpcCertGeneratePrincipalNameW
@ stdcall RpcCompleteAsyncCall(ptr ptr) RpcAsyncCompleteCall
...
...
dlls/rpcrt4/rpcrt4_main.c
View file @
f15287de
...
...
@@ -1081,3 +1081,12 @@ RPC_STATUS RPC_ENTRY RpcCancelThread(void* ThreadHandle)
return
RPC_S_OK
;
}
/******************************************************************************
* RpcCancelThreadEx (rpcrt4.@)
*/
RPC_STATUS
RPC_ENTRY
RpcCancelThreadEx
(
void
*
ThreadHandle
,
LONG
Timeout
)
{
FIXME
(
"(%p, %d)
\n
"
,
ThreadHandle
,
Timeout
);
return
RPC_S_OK
;
}
include/rpcdce.h
View file @
f15287de
...
...
@@ -469,6 +469,7 @@ RPCRTAPI RPC_STATUS RPC_ENTRY
#define RpcBindingInqAuthInfo WINELIB_NAME_AW(RpcBindingInqAuthInfo)
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcCancelThread
(
void
*
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcCancelThreadEx
(
void
*
,
LONG
);
RPCRTAPI
RPC_STATUS
RPC_ENTRY
RpcNetworkIsProtseqValidA
(
RPC_CSTR
protseq
);
...
...
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