A few fixes for mingw cross-compilation.
[wine] / include / rpcdcep.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., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  */
18
19 #ifndef __WINE_RPCDCEP_H
20 #define __WINE_RPCDCEP_H
21
22
23 typedef struct _RPC_VERSION {
24     unsigned short MajorVersion;
25     unsigned short MinorVersion;
26 } RPC_VERSION;
27
28 typedef struct _RPC_SYNTAX_IDENTIFIER {
29     GUID SyntaxGUID;
30     RPC_VERSION SyntaxVersion;
31 } RPC_SYNTAX_IDENTIFIER, *PRPC_SYNTAX_IDENTIFIER;
32
33 typedef struct _RPC_MESSAGE
34 {
35     RPC_BINDING_HANDLE Handle;
36     unsigned long DataRepresentation;
37     void* Buffer;
38     unsigned int BufferLength;
39     unsigned int ProcNum;
40     PRPC_SYNTAX_IDENTIFIER TransferSyntax;
41     void* RpcInterfaceInformation;
42     void* ReservedForRuntime;
43     RPC_MGR_EPV* ManagerEpv;
44     void* ImportContext;
45     unsigned long RpcFlags;
46 } RPC_MESSAGE, *PRPC_MESSAGE;
47
48 #endif /*__WINE_RPCDCE_H */