Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
3433839b
Commit
3433839b
authored
Jan 27, 2006
by
Robert Shearman
Committed by
Alexandre Julliard
Jan 27, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
include: Add types and definitions for RPC user callback routines.
parent
b7047df8
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
31 additions
and
0 deletions
+31
-0
rpcndr.h
include/rpcndr.h
+31
-0
No files found.
include/rpcndr.h
View file @
3433839b
...
@@ -254,6 +254,37 @@ typedef struct _USER_MARSHAL_ROUTINE_QUADRUPLE
...
@@ -254,6 +254,37 @@ typedef struct _USER_MARSHAL_ROUTINE_QUADRUPLE
USER_MARSHAL_FREEING_ROUTINE
pfnFree
;
USER_MARSHAL_FREEING_ROUTINE
pfnFree
;
}
USER_MARSHAL_ROUTINE_QUADRUPLE
;
}
USER_MARSHAL_ROUTINE_QUADRUPLE
;
/* 'USRC' */
#define USER_MARSHAL_CB_SIGNATURE \
( (DWORD)'U' | ( (DWORD)'S' << 8 ) | \
( (DWORD)'R' << 16 ) | ( (DWORD)'C' << 24 ) )
typedef
enum
{
USER_MARSHAL_CB_BUFFER_SIZE
,
USER_MARSHAL_CB_MARSHALL
,
USER_MARSHAL_CB_UNMARSHALL
,
USER_MARSHAL_CB_FREE
}
USER_MARSHAL_CB_TYPE
;
typedef
struct
_USER_MARSHAL_CB
{
unsigned
long
Flags
;
PMIDL_STUB_MESSAGE
pStubMsg
;
PFORMAT_STRING
pReserve
;
unsigned
long
Signature
;
USER_MARSHAL_CB_TYPE
CBType
;
PFORMAT_STRING
pFormat
;
PFORMAT_STRING
pTypeFormat
;
}
USER_MARSHAL_CB
;
#define USER_CALL_CTXT_MASK(f) ((f) & 0x00ff)
#define USER_CALL_AUX_MASK(f) ((f) & 0xff00)
#define GET_USER_DATA_REP(f) HIWORD(f)
#define USER_CALL_IS_ASYNC 0x0100
#define USER_CALL_NEW_CORRELATION_DESC 0x0200
typedef
struct
_MALLOC_FREE_STRUCT
typedef
struct
_MALLOC_FREE_STRUCT
{
{
void
*
(
__RPC_USER
*
pfnAllocate
)(
size_t
);
void
*
(
__RPC_USER
*
pfnAllocate
)(
size_t
);
...
...
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