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
2b40f9b0
Commit
2b40f9b0
authored
Mar 06, 2015
by
Nikolay Sivov
Committed by
Alexandre Julliard
Mar 06, 2015
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
rpcrt4: Implement RPC_FC_CALLBACK_HANDLE handle type for NdrClientCall2().
parent
c921deeb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
ndr_stubless.c
dlls/rpcrt4/ndr_stubless.c
+5
-1
ndr_stubless.h
dlls/rpcrt4/ndr_stubless.h
+2
-1
No files found.
dlls/rpcrt4/ndr_stubless.c
View file @
2b40f9b0
...
...
@@ -344,7 +344,11 @@ static PFORMAT_STRING client_get_handle(
*
phBinding
=
*
pStubMsg
->
StubDesc
->
IMPLICIT_HANDLE_INFO
.
pPrimitiveHandle
;
break
;
case
RPC_FC_CALLBACK_HANDLE
:
/* implicit callback */
FIXME
(
"RPC_FC_CALLBACK_HANDLE
\n
"
);
TRACE
(
"RPC_FC_CALLBACK_HANDLE
\n
"
);
/* server calls callback procedures only in response to remote call, and most recent
binding handle is used. Calling back to a client can potentially result in another
callback with different current handle. */
*
phBinding
=
I_RpcGetCurrentCallHandle
();
break
;
case
RPC_FC_AUTO_HANDLE
:
/* implicit auto handle */
/* strictly speaking, it isn't necessary to set hBinding here
...
...
dlls/rpcrt4/ndr_stubless.h
View file @
2b40f9b0
...
...
@@ -35,7 +35,8 @@ typedef struct _NDR_PROC_HEADER
* RPC_FC_BIND_PRIMITIVE = 32 - Implicit handle using handle_t created by
* calling application
* RPC_FC_AUTO_HANDLE = 33 - Automatic handle
* RPC_FC_CALLBACK_HANDLE = 34 - undocumented
* RPC_FC_CALLBACK_HANDLE = 34 - Implicit handle used for a callback: current handle
* from last remote call
*/
unsigned
char
handle_type
;
...
...
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