msi: Set the SystemComponent installation property if necessary.
[wine] / include / rpcndr.h
1 /*
2  * Copyright (C) 2000 Francois Gouget
3  *
4  * This library is free software; you can redistribute it and/or
5  * modify it under the terms of the GNU Lesser General Public
6  * License as published by the Free Software Foundation; either
7  * version 2.1 of the License, or (at your option) any later version.
8  *
9  * This library is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * Lesser General Public License for more details.
13  *
14  * You should have received a copy of the GNU Lesser General Public
15  * License along with this library; if not, write to the Free Software
16  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
17  */
18
19 #ifndef __RPCNDR_H_VERSION__
20 #define __RPCNDR_H_VERSION__ ( 500 )
21 #endif
22
23 #ifndef __WINE_RPCNDR_H
24 #define __WINE_RPCNDR_H
25
26 #include <basetsd.h>
27 #include <rpcsal.h>
28
29 #ifdef __cplusplus
30 extern "C" {
31 #endif
32
33 #undef CONST_VTBL
34 #ifdef CONST_VTABLE
35 # define CONST_VTBL const
36 #else
37 # define CONST_VTBL
38 #endif
39
40 /* stupid #if can't handle casts... this __stupidity
41    is just a workaround for that limitation */
42
43 #define __NDR_CHAR_REP_MASK  0x000fL
44 #define __NDR_INT_REP_MASK   0x00f0L
45 #define __NDR_FLOAT_REP_MASK 0xff00L
46
47 #define __NDR_IEEE_FLOAT     0x0000L
48 #define __NDR_VAX_FLOAT      0x0100L
49 #define __NDR_IBM_FLOAT      0x0300L
50
51 #define __NDR_ASCII_CHAR     0x0000L
52 #define __NDR_EBCDIC_CHAR    0x0001L
53
54 #define __NDR_LITTLE_ENDIAN  0x0010L
55 #define __NDR_BIG_ENDIAN     0x0000L
56
57 /* Mac's are special */
58 #if defined(__RPC_MAC__)
59 # define __NDR_LOCAL_DATA_REPRESENTATION \
60     (__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_BIG_ENDIAN)
61 #else
62 # define __NDR_LOCAL_DATA_REPRESENTATION \
63     (__NDR_IEEE_FLOAT | __NDR_ASCII_CHAR | __NDR_LITTLE_ENDIAN)
64 #endif
65
66 #define __NDR_LOCAL_ENDIAN \
67   (__NDR_LOCAL_DATA_REPRESENTATION & __NDR_INT_REP_MASK)
68
69 /* for convenience, define NDR_LOCAL_IS_BIG_ENDIAN iff it is */
70 #if __NDR_LOCAL_ENDIAN == __NDR_BIG_ENDIAN
71 # define NDR_LOCAL_IS_BIG_ENDIAN
72 #elif __NDR_LOCAL_ENDIAN == __NDR_LITTLE_ENDIAN
73 # undef NDR_LOCAL_IS_BIG_ENDIAN
74 #else
75 # error alien NDR_LOCAL_ENDIAN - Greg botched the defines again, please report
76 #endif
77
78 /* finally, do the casts like Microsoft */
79
80 #define NDR_CHAR_REP_MASK             ((ULONG) __NDR_CHAR_REP_MASK)
81 #define NDR_INT_REP_MASK              ((ULONG) __NDR_INT_REP_MASK)
82 #define NDR_FLOAT_REP_MASK            ((ULONG) __NDR_FLOAT_REP_MASK)
83 #define NDR_IEEE_FLOAT                ((ULONG) __NDR_IEEE_FLOAT)
84 #define NDR_VAX_FLOAT                 ((ULONG) __NDR_VAX_FLOAT)
85 #define NDR_IBM_FLOAT                 ((ULONG) __NDR_IBM_FLOAT)
86 #define NDR_ASCII_CHAR                ((ULONG) __NDR_ASCII_CHAR)
87 #define NDR_EBCDIC_CHAR               ((ULONG) __NDR_EBCDIC_CHAR)
88 #define NDR_LITTLE_ENDIAN             ((ULONG) __NDR_LITTLE_ENDIAN)
89 #define NDR_BIG_ENDIAN                ((ULONG) __NDR_BIG_ENDIAN)
90 #define NDR_LOCAL_DATA_REPRESENTATION ((ULONG) __NDR_LOCAL_DATA_REPRESENTATION)
91 #define NDR_LOCAL_ENDIAN              ((ULONG) __NDR_LOCAL_ENDIAN)
92
93
94 #define TARGET_IS_NT50_OR_LATER 1
95 #define TARGET_IS_NT40_OR_LATER 1
96 #define TARGET_IS_NT351_OR_WIN95_OR_LATER 1
97
98 #define small char
99 typedef unsigned char byte;
100 typedef INT64 hyper;
101 typedef UINT64 MIDL_uhyper;
102 typedef unsigned char boolean;
103
104 #define __RPC_CALLEE WINAPI
105 #define RPC_VAR_ENTRY __cdecl
106 #define NDR_SHAREABLE static
107
108 #define MIDL_ascii_strlen(s) strlen(s)
109 #define MIDL_ascii_strcpy(d,s) strcpy(d,s)
110 #define MIDL_memset(d,v,n) memset(d,v,n)
111 #define midl_user_free MIDL_user_free
112 #define midl_user_allocate MIDL_user_allocate
113
114 void * __RPC_USER MIDL_user_allocate(SIZE_T);
115 void __RPC_USER MIDL_user_free(void *);
116
117 #define NdrFcShort(s) (unsigned char)(s & 0xff), (unsigned char)(s >> 8)
118 #define NdrFcLong(s)  (unsigned char)(s & 0xff), (unsigned char)((s & 0x0000ff00) >> 8), \
119   (unsigned char)((s & 0x00ff0000) >> 16), (unsigned char)(s >> 24)
120
121 #define RPC_BAD_STUB_DATA_EXCEPTION_FILTER  \
122   ((RpcExceptionCode() == STATUS_ACCESS_VIOLATION) || \
123    (RpcExceptionCode() == STATUS_DATATYPE_MISALIGNMENT) || \
124    (RpcExceptionCode() == RPC_X_BAD_STUB_DATA) || \
125    (RpcExceptionCode() == RPC_S_INVALID_BOUND))
126
127 typedef struct
128 {
129   void *pad[2];
130   void *userContext;
131 } *NDR_SCONTEXT;
132
133 #define NDRSContextValue(hContext) (&(hContext)->userContext)
134 #define cbNDRContext 20
135
136 typedef void (__RPC_USER *NDR_RUNDOWN)(void *context);
137 typedef void (__RPC_USER *NDR_NOTIFY_ROUTINE)(void);
138 typedef void (__RPC_USER *NDR_NOTIFY2_ROUTINE)(boolean flag);
139
140 #define DECLSPEC_UUID(x)
141 #define MIDL_INTERFACE(x)   struct
142
143 struct _MIDL_STUB_MESSAGE;
144 struct _MIDL_STUB_DESC;
145 struct _FULL_PTR_XLAT_TABLES;
146 struct NDR_ALLOC_ALL_NODES_CONTEXT;
147 struct NDR_POINTER_QUEUE_STATE;
148
149 typedef unsigned char *RPC_BUFPTR;
150 typedef ULONG RPC_LENGTH;
151 typedef void (__RPC_USER *EXPR_EVAL)(struct _MIDL_STUB_MESSAGE *);
152 typedef const unsigned char *PFORMAT_STRING;
153
154 typedef struct
155 {
156   LONG Dimension;
157   ULONG *BufferConformanceMark;
158   ULONG *BufferVarianceMark;
159   ULONG *MaxCountArray;
160   ULONG *OffsetArray;
161   ULONG *ActualCountArray;
162 } ARRAY_INFO, *PARRAY_INFO;
163
164 typedef struct
165 {
166   ULONG WireCodeset;
167   ULONG DesiredReceivingCodeset;
168   void *CSArrayInfo;
169 } CS_STUB_INFO;
170
171 typedef struct _NDR_PIPE_DESC *PNDR_PIPE_DESC;
172 typedef struct _NDR_PIPE_MESSAGE *PNDR_PIPE_MESSAGE;
173 typedef struct _NDR_ASYNC_MESSAGE *PNDR_ASYNC_MESSAGE;
174 typedef struct _NDR_CORRELATION_INFO *PNDR_CORRELATION_INFO;
175
176 typedef struct _MIDL_STUB_MESSAGE
177 {
178   PRPC_MESSAGE RpcMsg;
179   unsigned char *Buffer;
180   unsigned char *BufferStart;
181   unsigned char *BufferEnd;
182   unsigned char *BufferMark;
183   ULONG BufferLength;
184   ULONG MemorySize;
185   unsigned char *Memory;
186   unsigned char IsClient;
187   unsigned char Pad;
188   unsigned short uFlags2;
189   int ReuseBuffer;
190   struct NDR_ALLOC_ALL_NODES_CONTEXT *pAllocAllNodesContext;
191   struct NDR_POINTER_QUEUE_STATE *pPointerQueueState;
192   int IgnoreEmbeddedPointers;
193   unsigned char *PointerBufferMark;
194   unsigned char CorrDespIncrement;
195   unsigned char uFlags;
196   unsigned short UniquePtrCount;
197   ULONG_PTR MaxCount;
198   ULONG Offset;
199   ULONG ActualCount;
200   void * (__WINE_ALLOC_SIZE(1) __RPC_API *pfnAllocate)(SIZE_T);
201   void (__RPC_API *pfnFree)(void *);
202   unsigned char *StackTop;
203   unsigned char *pPresentedType;
204   unsigned char *pTransmitType;
205   handle_t SavedHandle;
206   const struct _MIDL_STUB_DESC *StubDesc;
207   struct _FULL_PTR_XLAT_TABLES *FullPtrXlatTables;
208   ULONG FullPtrRefId;
209   ULONG PointerLength;
210   unsigned int fInDontFree:1;
211   unsigned int fDontCallFreeInst:1;
212   unsigned int fInOnlyParam:1;
213   unsigned int fHasReturn:1;
214   unsigned int fHasExtensions:1;
215   unsigned int fHasNewCorrDesc:1;
216   unsigned int fIsIn:1;
217   unsigned int fIsOut:1;
218   unsigned int fIsOicf:1;
219   unsigned int fBufferValid:1;
220   unsigned int fHasMemoryValidateCallback:1;
221   unsigned int fInFree:1;
222   unsigned int fNeedMCCP:1;
223   int fUnused:3;
224   int fUnused2:16;
225   DWORD dwDestContext;
226   void *pvDestContext;
227   NDR_SCONTEXT *SavedContextHandles;
228   LONG ParamNumber;
229   struct IRpcChannelBuffer *pRpcChannelBuffer;
230   PARRAY_INFO pArrayInfo;
231   ULONG *SizePtrCountArray;
232   ULONG *SizePtrOffsetArray;
233   ULONG *SizePtrLengthArray;
234   void *pArgQueue;
235   DWORD dwStubPhase;
236   void *LowStackMark;
237   PNDR_ASYNC_MESSAGE pAsyncMsg;
238   PNDR_CORRELATION_INFO pCorrInfo;
239   unsigned char *pCorrMemory;
240   void *pMemoryList;
241   CS_STUB_INFO *pCSInfo;
242   unsigned char *ConformanceMark;
243   unsigned char *VarianceMark;
244   INT_PTR Unused; /* BackingStoreLowMark on IA64 */
245   struct _NDR_PROC_CONTEXT *pContext;
246   void* ContextHandleHash;
247   void* pUserMarshalList;
248   INT_PTR Reserved51_3;
249   INT_PTR Reserved51_4;
250   INT_PTR Reserved51_5;
251 } MIDL_STUB_MESSAGE, *PMIDL_STUB_MESSAGE;
252
253 typedef void * (__RPC_API * GENERIC_BINDING_ROUTINE)(void *);
254 typedef void (__RPC_API * GENERIC_UNBIND_ROUTINE)(void *, unsigned char *);
255
256 typedef struct _GENERIC_BINDING_ROUTINE_PAIR
257 {
258   GENERIC_BINDING_ROUTINE pfnBind;
259   GENERIC_UNBIND_ROUTINE pfnUnbind;
260 } GENERIC_BINDING_ROUTINE_PAIR, *PGENERIC_BINDING_ROUTINE_PAIR;
261
262 typedef struct __GENERIC_BINDING_INFO
263 {
264   void *pObj;
265   unsigned int Size;
266   GENERIC_BINDING_ROUTINE pfnBind;
267   GENERIC_UNBIND_ROUTINE pfnUnbind;
268 } GENERIC_BINDING_INFO, *PGENERIC_BINDING_INFO;
269
270 typedef void (__RPC_USER *XMIT_HELPER_ROUTINE)(PMIDL_STUB_MESSAGE);
271
272 typedef struct _XMIT_ROUTINE_QUINTUPLE
273 {
274   XMIT_HELPER_ROUTINE pfnTranslateToXmit;
275   XMIT_HELPER_ROUTINE pfnTranslateFromXmit;
276   XMIT_HELPER_ROUTINE pfnFreeXmit;
277   XMIT_HELPER_ROUTINE pfnFreeInst;
278 } XMIT_ROUTINE_QUINTUPLE, *PXMIT_ROUTINE_QUINTUPLE;
279
280 typedef ULONG (__RPC_USER *USER_MARSHAL_SIZING_ROUTINE)(ULONG *, ULONG, void *);
281 typedef unsigned char * (__RPC_USER *USER_MARSHAL_MARSHALLING_ROUTINE)(ULONG *, unsigned char *, void *);
282 typedef unsigned char * (__RPC_USER *USER_MARSHAL_UNMARSHALLING_ROUTINE)(ULONG *, unsigned char *, void *);
283 typedef void (__RPC_USER *USER_MARSHAL_FREEING_ROUTINE)(ULONG *, void *);
284
285 typedef struct _USER_MARSHAL_ROUTINE_QUADRUPLE
286 {
287   USER_MARSHAL_SIZING_ROUTINE pfnBufferSize;
288   USER_MARSHAL_MARSHALLING_ROUTINE pfnMarshall;
289   USER_MARSHAL_UNMARSHALLING_ROUTINE pfnUnmarshall;
290   USER_MARSHAL_FREEING_ROUTINE pfnFree;
291 } USER_MARSHAL_ROUTINE_QUADRUPLE;
292
293 /* 'USRC' */
294 #define USER_MARSHAL_CB_SIGNATURE \
295         ( ( (DWORD)'U' << 24 ) | ( (DWORD)'S' << 16 ) | \
296           ( (DWORD)'R' << 8  ) | ( (DWORD)'C'       ) )
297
298 typedef enum
299 {
300     USER_MARSHAL_CB_BUFFER_SIZE,
301     USER_MARSHAL_CB_MARSHALL,
302     USER_MARSHAL_CB_UNMARSHALL,
303     USER_MARSHAL_CB_FREE
304 } USER_MARSHAL_CB_TYPE;
305
306 typedef struct _USER_MARSHAL_CB
307 {
308     ULONG Flags;
309     PMIDL_STUB_MESSAGE pStubMsg;
310     PFORMAT_STRING pReserve;
311     ULONG Signature;
312     USER_MARSHAL_CB_TYPE CBType;
313     PFORMAT_STRING pFormat;
314     PFORMAT_STRING pTypeFormat;
315 } USER_MARSHAL_CB;
316
317 #define USER_CALL_CTXT_MASK(f) ((f) & 0x00ff)
318 #define USER_CALL_AUX_MASK(f) ((f) & 0xff00)
319 #define GET_USER_DATA_REP(f) HIWORD(f)
320
321 #define USER_CALL_IS_ASYNC 0x0100
322 #define USER_CALL_NEW_CORRELATION_DESC 0x0200
323
324 typedef struct _MALLOC_FREE_STRUCT
325 {
326   void * (__WINE_ALLOC_SIZE(1) __RPC_USER *pfnAllocate)(SIZE_T);
327   void   (__RPC_USER *pfnFree)(void *);
328 } MALLOC_FREE_STRUCT;
329
330 typedef struct _COMM_FAULT_OFFSETS
331 {
332   short CommOffset;
333   short FaultOffset;
334 } COMM_FAULT_OFFSETS;
335
336 typedef struct _MIDL_STUB_DESC
337 {
338   void *RpcInterfaceInformation;
339   void * (__WINE_ALLOC_SIZE(1) __RPC_API *pfnAllocate)(SIZE_T);
340   void (__RPC_API *pfnFree)(void *);
341   union {
342     handle_t *pAutoHandle;
343     handle_t *pPrimitiveHandle;
344     PGENERIC_BINDING_INFO pGenericBindingInfo;
345   } IMPLICIT_HANDLE_INFO;
346   const NDR_RUNDOWN *apfnNdrRundownRoutines;
347   const GENERIC_BINDING_ROUTINE_PAIR *aGenericBindingRoutinePairs;
348   const EXPR_EVAL *apfnExprEval;
349   const XMIT_ROUTINE_QUINTUPLE *aXmitQuintuple;
350   const unsigned char *pFormatTypes;
351   int fCheckBounds;
352   ULONG Version;
353   MALLOC_FREE_STRUCT *pMallocFreeStruct;
354   LONG MIDLVersion;
355   const COMM_FAULT_OFFSETS *CommFaultOffsets;
356   const USER_MARSHAL_ROUTINE_QUADRUPLE *aUserMarshalQuadruple;
357   const NDR_NOTIFY_ROUTINE *NotifyRoutineTable;
358   ULONG_PTR mFlags;
359   ULONG_PTR Reserved3;
360   ULONG_PTR Reserved4;
361   ULONG_PTR Reserved5;
362 } MIDL_STUB_DESC;
363 typedef const MIDL_STUB_DESC *PMIDL_STUB_DESC;
364
365 typedef struct _MIDL_FORMAT_STRING
366 {
367   short Pad;
368 #if defined(__GNUC__)
369   unsigned char Format[0];
370 #else
371   unsigned char Format[1];
372 #endif
373 } MIDL_FORMAT_STRING;
374
375 typedef struct _MIDL_SYNTAX_INFO
376 {
377   RPC_SYNTAX_IDENTIFIER TransferSyntax;
378   RPC_DISPATCH_TABLE* DispatchTable;
379   PFORMAT_STRING ProcString;
380   const unsigned short* FmtStringOffset;
381   PFORMAT_STRING TypeString;
382   const void* aUserMarshalQuadruple;
383   ULONG_PTR pReserved1;
384   ULONG_PTR pReserved2;
385 } MIDL_SYNTAX_INFO, *PMIDL_SYNTAX_INFO;
386
387 typedef void (__RPC_API *STUB_THUNK)( PMIDL_STUB_MESSAGE );
388
389 #ifdef WINE_STRICT_PROTOTYPES
390 typedef LONG (__RPC_API *SERVER_ROUTINE)(void);
391 #else
392 typedef LONG (__RPC_API *SERVER_ROUTINE)();
393 #endif
394
395 typedef struct _MIDL_SERVER_INFO_
396 {
397   PMIDL_STUB_DESC pStubDesc;
398   const SERVER_ROUTINE *DispatchTable;
399   PFORMAT_STRING ProcString;
400   const unsigned short *FmtStringOffset;
401   const STUB_THUNK *ThunkTable;
402   PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
403   ULONG_PTR nCount;
404   PMIDL_SYNTAX_INFO pSyntaxInfo;
405 } MIDL_SERVER_INFO, *PMIDL_SERVER_INFO;
406
407 typedef struct _MIDL_STUBLESS_PROXY_INFO
408 {
409   PMIDL_STUB_DESC pStubDesc;
410   PFORMAT_STRING ProcFormatString;
411   const unsigned short *FormatStringOffset;
412   PRPC_SYNTAX_IDENTIFIER pTransferSyntax;
413   ULONG_PTR nCount;
414   PMIDL_SYNTAX_INFO pSyntaxInfo;
415 } MIDL_STUBLESS_PROXY_INFO, *PMIDL_STUBLESS_PROXY_INFO;
416
417 typedef union _CLIENT_CALL_RETURN
418 {
419   void *Pointer;
420   LONG_PTR Simple;
421 } CLIENT_CALL_RETURN;
422
423 typedef enum {
424   STUB_UNMARSHAL,
425   STUB_CALL_SERVER,
426   STUB_MARSHAL,
427   STUB_CALL_SERVER_NO_HRESULT
428 } STUB_PHASE;
429
430 typedef enum {
431   PROXY_CALCSIZE,
432   PROXY_GETBUFFER,
433   PROXY_MARSHAL,
434   PROXY_SENDRECEIVE,
435   PROXY_UNMARSHAL
436 } PROXY_PHASE;
437
438 typedef enum {
439   XLAT_SERVER = 1,
440   XLAT_CLIENT
441 } XLAT_SIDE;
442
443 typedef struct _FULL_PTR_TO_REFID_ELEMENT {
444   struct _FULL_PTR_TO_REFID_ELEMENT *Next;
445   void *Pointer;
446   ULONG RefId;
447   unsigned char State;
448 } FULL_PTR_TO_REFID_ELEMENT, *PFULL_PTR_TO_REFID_ELEMENT;
449
450 /* Full pointer translation tables */
451 typedef struct _FULL_PTR_XLAT_TABLES {
452   struct {
453     void **XlatTable;
454     unsigned char *StateTable;
455     ULONG NumberOfEntries;
456   } RefIdToPointer;
457
458   struct {
459     PFULL_PTR_TO_REFID_ELEMENT *XlatTable;
460     ULONG NumberOfBuckets;
461     ULONG HashMask;
462   } PointerToRefId;
463
464   ULONG                   NextRefId;
465   XLAT_SIDE               XlatSide;
466 } FULL_PTR_XLAT_TABLES,  *PFULL_PTR_XLAT_TABLES;
467
468 struct IRpcStubBuffer;
469
470 typedef ULONG error_status_t;
471 typedef void  * NDR_CCONTEXT;
472
473 typedef struct _SCONTEXT_QUEUE {
474   ULONG NumberOfObjects;
475   NDR_SCONTEXT *ArrayOfObjects;
476 } SCONTEXT_QUEUE, *PSCONTEXT_QUEUE;
477
478 typedef struct _NDR_USER_MARSHAL_INFO_LEVEL1
479 {
480     void *Buffer;
481     ULONG BufferSize;
482     void * (__WINE_ALLOC_SIZE(1) __RPC_API *pfnAllocate)(SIZE_T);
483     void (__RPC_API *pfnFree)(void *);
484     struct IRpcChannelBuffer *pRpcChannelBuffer;
485     ULONG_PTR Reserved[5];
486 } NDR_USER_MARSHAL_INFO_LEVEL1;
487
488 typedef struct _NDR_USER_MARSHAL_INFO
489 {
490     ULONG InformationLevel;
491     union
492     {
493         NDR_USER_MARSHAL_INFO_LEVEL1 Level1;
494     } DUMMYUNIONNAME1;
495 } NDR_USER_MARSHAL_INFO;
496
497 /* Context Handles */
498
499 RPCRTAPI RPC_BINDING_HANDLE RPC_ENTRY
500   NDRCContextBinding( NDR_CCONTEXT CContext );
501
502 RPCRTAPI void RPC_ENTRY
503   NDRCContextMarshall( NDR_CCONTEXT CContext, void *pBuff );
504
505 RPCRTAPI void RPC_ENTRY
506   NDRCContextUnmarshall( NDR_CCONTEXT *pCContext, RPC_BINDING_HANDLE hBinding,
507                          void *pBuff, ULONG DataRepresentation );
508
509 RPCRTAPI void RPC_ENTRY
510   NDRSContextMarshall( NDR_SCONTEXT CContext, void *pBuff, NDR_RUNDOWN userRunDownIn );
511
512 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
513   NDRSContextUnmarshall( void *pBuff, ULONG DataRepresentation );
514
515 RPCRTAPI void RPC_ENTRY
516   NDRSContextMarshallEx( RPC_BINDING_HANDLE BindingHandle, NDR_SCONTEXT CContext,
517                          void *pBuff, NDR_RUNDOWN userRunDownIn );
518
519 RPCRTAPI void RPC_ENTRY
520   NDRSContextMarshall2( RPC_BINDING_HANDLE BindingHandle, NDR_SCONTEXT CContext,
521                         void *pBuff, NDR_RUNDOWN userRunDownIn, void * CtxGuard,
522                         ULONG Flags );
523
524 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
525   NDRSContextUnmarshallEx( RPC_BINDING_HANDLE BindingHandle, void *pBuff,
526                            ULONG DataRepresentation );
527
528 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
529   NDRSContextUnmarshall2( RPC_BINDING_HANDLE BindingHandle, void *pBuff,
530                           ULONG DataRepresentation, void *CtxGuard,
531                           ULONG Flags );
532
533 RPCRTAPI void RPC_ENTRY
534   NdrClientContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_CCONTEXT ContextHandle, int fCheck );
535
536 RPCRTAPI void RPC_ENTRY
537   NdrClientContextUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, NDR_CCONTEXT* pContextHandle,
538                               RPC_BINDING_HANDLE BindHandle );
539
540 RPCRTAPI void RPC_ENTRY
541   NdrServerContextMarshall ( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle, NDR_RUNDOWN RundownRoutine );
542
543 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
544   NdrServerContextUnmarshall( PMIDL_STUB_MESSAGE pStubMsg );
545
546 RPCRTAPI void RPC_ENTRY
547   NdrContextHandleSize( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat );
548
549 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
550   NdrContextHandleInitialize( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat );
551
552 RPCRTAPI void RPC_ENTRY
553   NdrServerContextNewMarshall( PMIDL_STUB_MESSAGE pStubMsg, NDR_SCONTEXT ContextHandle,
554                                NDR_RUNDOWN RundownRoutine, PFORMAT_STRING pFormat );
555
556 RPCRTAPI NDR_SCONTEXT RPC_ENTRY
557   NdrServerContextNewUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat );
558
559 RPCRTAPI RPC_STATUS RPC_ENTRY
560   RpcSmDestroyClientContext( void **ContextHandle );
561
562 RPCRTAPI void RPC_ENTRY
563   RpcSsDestroyClientContext( void **ContextHandle );
564
565 RPCRTAPI void RPC_ENTRY
566   NdrSimpleTypeMarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, unsigned char FormatChar );
567 RPCRTAPI void RPC_ENTRY
568   NdrSimpleTypeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, unsigned char FormatChar );
569
570 RPCRTAPI unsigned char* RPC_ENTRY
571   NdrByteCountPointerMarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat );
572 RPCRTAPI unsigned char* RPC_ENTRY
573   NdrByteCountPointerUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char** ppMemory, PFORMAT_STRING pFormat, unsigned char fMustAlloc );
574 RPCRTAPI void RPC_ENTRY
575   NdrByteCountPointerBufferSize( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat );
576 RPCRTAPI void RPC_ENTRY
577   NdrByteCountPointerFree( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat );
578
579 RPCRTAPI unsigned char* RPC_ENTRY
580   NdrRangeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char** ppMemory, PFORMAT_STRING pFormat, unsigned char fMustAlloc );
581
582 /* while MS declares each prototype separately, I prefer to use macros for this kind of thing instead */
583 #define SIMPLE_TYPE_MARSHAL(type) \
584 RPCRTAPI unsigned char* RPC_ENTRY \
585   Ndr##type##Marshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat ); \
586 RPCRTAPI unsigned char* RPC_ENTRY \
587   Ndr##type##Unmarshall( PMIDL_STUB_MESSAGE pStubMsg, unsigned char** ppMemory, PFORMAT_STRING pFormat, unsigned char fMustAlloc ); \
588 RPCRTAPI void RPC_ENTRY \
589   Ndr##type##BufferSize( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat ); \
590 RPCRTAPI ULONG RPC_ENTRY \
591   Ndr##type##MemorySize( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat );
592
593 #define TYPE_MARSHAL(type) \
594   SIMPLE_TYPE_MARSHAL(type) \
595 RPCRTAPI void RPC_ENTRY \
596   Ndr##type##Free( PMIDL_STUB_MESSAGE pStubMsg, unsigned char* pMemory, PFORMAT_STRING pFormat );
597
598 TYPE_MARSHAL(Pointer)
599 TYPE_MARSHAL(SimpleStruct)
600 TYPE_MARSHAL(ConformantStruct)
601 TYPE_MARSHAL(ConformantVaryingStruct)
602 TYPE_MARSHAL(ComplexStruct)
603 TYPE_MARSHAL(FixedArray)
604 TYPE_MARSHAL(ConformantArray)
605 TYPE_MARSHAL(ConformantVaryingArray)
606 TYPE_MARSHAL(VaryingArray)
607 TYPE_MARSHAL(ComplexArray)
608 TYPE_MARSHAL(EncapsulatedUnion)
609 TYPE_MARSHAL(NonEncapsulatedUnion)
610 TYPE_MARSHAL(XmitOrRepAs)
611 TYPE_MARSHAL(UserMarshal)
612 TYPE_MARSHAL(InterfacePointer)
613
614 SIMPLE_TYPE_MARSHAL(ConformantString)
615 SIMPLE_TYPE_MARSHAL(NonConformantString)
616
617 #undef TYPE_MARSHAL
618 #undef SIMPLE_TYPE_MARSHAL
619
620 RPCRTAPI void RPC_ENTRY
621   NdrCorrelationInitialize( PMIDL_STUB_MESSAGE pStubMsg, void *pMemory, ULONG CacheSize, ULONG flags );
622 RPCRTAPI void RPC_ENTRY
623   NdrCorrelationPass( PMIDL_STUB_MESSAGE pStubMsg );
624 RPCRTAPI void RPC_ENTRY
625   NdrCorrelationFree( PMIDL_STUB_MESSAGE pStubMsg );
626
627 RPCRTAPI void RPC_ENTRY
628   NdrConvert2( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat, LONG NumberParams );
629 RPCRTAPI void RPC_ENTRY
630   NdrConvert( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat );
631
632 #define USER_MARSHAL_FC_BYTE    1
633 #define USER_MARSHAL_FC_CHAR    2
634 #define USER_MARSHAL_FC_SMALL   3
635 #define USER_MARSHAL_FC_USMALL  4
636 #define USER_MARSHAL_FC_WCHAR   5
637 #define USER_MARSHAL_FC_SHORT   6
638 #define USER_MARSHAL_FC_USHORT  7
639 #define USER_MARSHAL_FC_LONG    8
640 #define USER_MARSHAL_FC_ULONG   9
641 #define USER_MARSHAL_FC_FLOAT   10
642 #define USER_MARSHAL_FC_HYPER   11
643 #define USER_MARSHAL_FC_DOUBLE  12
644
645 RPCRTAPI unsigned char* RPC_ENTRY
646   NdrUserMarshalSimpleTypeConvert( ULONG *pFlags, unsigned char *pBuffer, unsigned char FormatChar );
647
648 /* Note: this should return a CLIENT_CALL_RETURN, but calling convention for
649  * returning structures/unions is different between Windows and gcc on i386. */
650 LONG_PTR RPC_VAR_ENTRY
651   NdrClientCall2( PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat, ... );
652 LONG_PTR RPC_VAR_ENTRY
653   NdrClientCall( PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat, ... );
654 LONG_PTR RPC_VAR_ENTRY
655   NdrAsyncClientCall( PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat, ... );
656 LONG_PTR RPC_VAR_ENTRY
657   NdrDcomAsyncClientCall( PMIDL_STUB_DESC pStubDescriptor, PFORMAT_STRING pFormat, ... );
658
659 RPCRTAPI void RPC_ENTRY
660   NdrServerCall2( PRPC_MESSAGE pRpcMsg );
661 RPCRTAPI void RPC_ENTRY
662   NdrServerCall( PRPC_MESSAGE pRpcMsg );
663 RPCRTAPI void RPC_ENTRY
664   NdrAsyncServerCall( PRPC_MESSAGE pRpcMsg );
665
666 RPCRTAPI LONG RPC_ENTRY
667   NdrStubCall2( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, DWORD * pdwStubPhase );
668 RPCRTAPI LONG RPC_ENTRY
669   NdrStubCall( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, DWORD * pdwStubPhase );
670 RPCRTAPI LONG RPC_ENTRY
671   NdrAsyncStubCall( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, DWORD * pdwStubPhase );
672 RPCRTAPI LONG RPC_ENTRY
673   NdrDcomAsyncStubCall( struct IRpcStubBuffer* pThis, struct IRpcChannelBuffer* pChannel, PRPC_MESSAGE pRpcMsg, DWORD * pdwStubPhase );
674
675 RPCRTAPI void* RPC_ENTRY
676   NdrAllocate( PMIDL_STUB_MESSAGE pStubMsg, SIZE_T Len ) __WINE_ALLOC_SIZE(2);
677
678 RPCRTAPI void RPC_ENTRY
679   NdrClearOutParameters( PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat, void *ArgAddr );
680
681 RPCRTAPI RPC_STATUS RPC_ENTRY
682   NdrMapCommAndFaultStatus( PMIDL_STUB_MESSAGE pStubMsg, ULONG *pCommStatus,
683                             ULONG *pFaultStatus, RPC_STATUS Status_ );
684
685 RPCRTAPI void* RPC_ENTRY
686   NdrOleAllocate( SIZE_T Size ) __WINE_ALLOC_SIZE(1);
687 RPCRTAPI void RPC_ENTRY
688   NdrOleFree( void* NodeToFree );
689
690 RPCRTAPI void RPC_ENTRY
691   NdrClientInitialize( PRPC_MESSAGE pRpcMessage, PMIDL_STUB_MESSAGE pStubMsg,
692                        PMIDL_STUB_DESC pStubDesc, unsigned int ProcNum );
693 RPCRTAPI void RPC_ENTRY
694   NdrClientInitializeNew( PRPC_MESSAGE pRpcMessage, PMIDL_STUB_MESSAGE pStubMsg,
695                           PMIDL_STUB_DESC pStubDesc, unsigned int ProcNum );
696 RPCRTAPI unsigned char* RPC_ENTRY
697   NdrServerInitialize( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDesc );
698 RPCRTAPI unsigned char* RPC_ENTRY
699   NdrServerInitializeNew( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDesc );
700 RPCRTAPI unsigned char* RPC_ENTRY
701   NdrServerInitializeUnmarshall( PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDesc, PRPC_MESSAGE pRpcMsg );
702 RPCRTAPI void RPC_ENTRY
703   NdrServerInitializeMarshall( PRPC_MESSAGE pRpcMsg, PMIDL_STUB_MESSAGE pStubMsg  );
704 RPCRTAPI void RPC_ENTRY
705   NdrServerMarshall( struct IRpcStubBuffer *pThis, struct IRpcChannelBuffer *pChannel, PMIDL_STUB_MESSAGE pStubMsg, PFORMAT_STRING pFormat );
706 RPCRTAPI void RPC_ENTRY
707   NdrServerUnmarshall( struct IRpcChannelBuffer *pChannel, PRPC_MESSAGE pRpcMsg,
708                        PMIDL_STUB_MESSAGE pStubMsg, PMIDL_STUB_DESC pStubDesc,
709                        PFORMAT_STRING pFormat, void *pParamList );
710 RPCRTAPI unsigned char* RPC_ENTRY
711   NdrGetBuffer( PMIDL_STUB_MESSAGE stubmsg, ULONG buflen, RPC_BINDING_HANDLE handle );
712 RPCRTAPI void RPC_ENTRY
713   NdrFreeBuffer( PMIDL_STUB_MESSAGE pStubMsg );
714 RPCRTAPI unsigned char* RPC_ENTRY
715   NdrSendReceive( PMIDL_STUB_MESSAGE stubmsg, unsigned char *buffer );
716
717 RPCRTAPI unsigned char * RPC_ENTRY
718   NdrNsGetBuffer( PMIDL_STUB_MESSAGE pStubMsg, ULONG BufferLength, RPC_BINDING_HANDLE Handle );
719 RPCRTAPI unsigned char * RPC_ENTRY
720   NdrNsSendReceive( PMIDL_STUB_MESSAGE pStubMsg, unsigned char *pBufferEnd, RPC_BINDING_HANDLE *pAutoHandle );
721
722 RPCRTAPI RPC_STATUS RPC_ENTRY
723   NdrGetDcomProtocolVersion( PMIDL_STUB_MESSAGE pStubMsg, RPC_VERSION *pVersion );
724
725 RPCRTAPI PFULL_PTR_XLAT_TABLES RPC_ENTRY
726   NdrFullPointerXlatInit( ULONG NumberOfPointers, XLAT_SIDE XlatSide );
727 RPCRTAPI void RPC_ENTRY
728   NdrFullPointerXlatFree( PFULL_PTR_XLAT_TABLES pXlatTables );
729 RPCRTAPI int RPC_ENTRY
730   NdrFullPointerQueryPointer( PFULL_PTR_XLAT_TABLES pXlatTables, void *pPointer,
731                               unsigned char QueryType, ULONG *pRefId );
732 RPCRTAPI int RPC_ENTRY
733   NdrFullPointerQueryRefId( PFULL_PTR_XLAT_TABLES pXlatTables, ULONG RefId,
734                             unsigned char QueryType, void **ppPointer );
735 RPCRTAPI void RPC_ENTRY
736   NdrFullPointerInsertRefId( PFULL_PTR_XLAT_TABLES pXlatTables, ULONG RefId, void *pPointer );
737 RPCRTAPI int RPC_ENTRY
738   NdrFullPointerFree( PFULL_PTR_XLAT_TABLES pXlatTables, void *Pointer );
739
740 RPCRTAPI void RPC_ENTRY
741   NdrRpcSsEnableAllocate( PMIDL_STUB_MESSAGE pMessage );
742 RPCRTAPI void RPC_ENTRY
743   NdrRpcSsDisableAllocate( PMIDL_STUB_MESSAGE pMessage );
744 RPCRTAPI void RPC_ENTRY
745   NdrRpcSmSetClientToOsf( PMIDL_STUB_MESSAGE pMessage );
746 RPCRTAPI void * RPC_ENTRY
747   NdrRpcSmClientAllocate( SIZE_T Size ) __WINE_ALLOC_SIZE(1);
748 RPCRTAPI void RPC_ENTRY
749   NdrRpcSmClientFree( void *NodeToFree );
750 RPCRTAPI void * RPC_ENTRY
751   NdrRpcSsDefaultAllocate( SIZE_T Size ) __WINE_ALLOC_SIZE(1);
752 RPCRTAPI void RPC_ENTRY
753   NdrRpcSsDefaultFree( void *NodeToFree );
754
755 RPCRTAPI RPC_STATUS RPC_ENTRY
756   NdrGetUserMarshalInfo( ULONG *pFlags, ULONG InformationLevel, NDR_USER_MARSHAL_INFO *pMarshalInfo );
757
758 #ifdef __cplusplus
759 }
760 #endif
761 #endif /*__WINE_RPCNDR_H */