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
b0cbf664
Commit
b0cbf664
authored
Jan 07, 2008
by
Rob Shearman
Committed by
Alexandre Julliard
Jan 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Add stubs for I_RpcAsyncSetHandle and I_RpcAsyncAbortCall.
parent
807a203f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
42 additions
and
3 deletions
+42
-3
rpc_message.c
dlls/rpcrt4/rpc_message.c
+39
-0
rpcrt4.spec
dlls/rpcrt4/rpcrt4.spec
+3
-3
No files found.
dlls/rpcrt4/rpc_message.c
View file @
b0cbf664
...
...
@@ -1154,3 +1154,42 @@ RPC_STATUS WINAPI I_RpcSendReceive(PRPC_MESSAGE pMsg)
I_RpcFreeBuffer
(
&
original_message
);
return
status
;
}
/***********************************************************************
* I_RpcAsyncSetHandle [RPCRT4.@]
*
* Sets the asynchronous state of the handle contained in the RPC message
* structure.
*
* PARAMS
* pMsg [I] RPC Message structure.
* pAsync [I] Asynchronous state to set.
*
* RETURNS
* Success: RPC_S_OK.
* Failure: Any error code.
*/
RPC_STATUS
WINAPI
I_RpcAsyncSetHandle
(
PRPC_MESSAGE
pMsg
,
PRPC_ASYNC_STATE
pAsync
)
{
FIXME
(
"(%p, %p): stub
\n
"
,
pMsg
,
pAsync
);
return
RPC_S_INVALID_BINDING
;
}
/***********************************************************************
* I_RpcAsyncAbortCall [RPCRT4.@]
*
* Aborts an asynchronous call.
*
* PARAMS
* pAsync [I] Asynchronous state.
* ExceptionCode [I] Exception code.
*
* RETURNS
* Success: RPC_S_OK.
* Failure: Any error code.
*/
RPC_STATUS
WINAPI
I_RpcAsyncAbortCall
(
PRPC_ASYNC_STATE
pAsync
,
ULONG
ExceptionCode
)
{
FIXME
(
"(%p, %d): stub
\n
"
,
pAsync
,
ExceptionCode
);
return
RPC_S_INVALID_ASYNC_HANDLE
;
}
dlls/rpcrt4/rpcrt4.spec
View file @
b0cbf664
...
...
@@ -18,11 +18,11 @@
@ stdcall IUnknown_AddRef_Proxy(ptr)
@ stdcall IUnknown_QueryInterface_Proxy(ptr ptr ptr)
@ stdcall IUnknown_Release_Proxy(ptr)
@ st
ub I_RpcAbortAsync
Call
@ st
dcall I_RpcAbortAsyncCall(ptr long) I_RpcAsyncAbort
Call
@ stdcall I_RpcAllocate(long)
@ st
ub I_RpcAsyncAbortCall
@ st
dcall I_RpcAsyncAbortCall(ptr long)
@ stub I_RpcAsyncSendReceive # NT4
@ st
ub I_RpcAsyncSetHandle
@ st
dcall I_RpcAsyncSetHandle(ptr ptr)
@ stub I_RpcBCacheAllocate
@ stub I_RpcBCacheFree
@ stub I_RpcBindingCopy
...
...
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