Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
wine
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Jiajin Cui
wine
Commits
2b40f9b0
Commit
2b40f9b0
authored
9 years ago
by
Nikolay Sivov
Committed by
Alexandre Julliard
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
rpcrt4: Implement RPC_FC_CALLBACK_HANDLE handle type for NdrClientCall2().
parent
c921deeb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dlls/rpcrt4/ndr_stubless.c
+5
-1
5 additions, 1 deletion
dlls/rpcrt4/ndr_stubless.c
dlls/rpcrt4/ndr_stubless.h
+2
-1
2 additions, 1 deletion
dlls/rpcrt4/ndr_stubless.h
with
7 additions
and
2 deletions
dlls/rpcrt4/ndr_stubless.c
+
5
−
1
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
...
...
This diff is collapsed.
Click to expand it.
dlls/rpcrt4/ndr_stubless.h
+
2
−
1
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
;
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment