Convert NULL menu items to separators.
[wine/wine-kai.git] / include / rpcdcep.h
blobeaf0a7594bd657ce61b5a4c74d2ac1b110e29f7e
1 /*
2 * Copyright (C) 2000 Francois Gouget
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.
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.
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
19 #ifndef __WINE_RPCDCEP_H
20 #define __WINE_RPCDCEP_H
23 typedef struct _RPC_VERSION {
24 unsigned short MajorVersion;
25 unsigned short MinorVersion;
26 } RPC_VERSION;
28 typedef struct _RPC_SYNTAX_IDENTIFIER {
29 GUID SyntaxGUID;
30 RPC_VERSION SyntaxVersion;
31 } RPC_SYNTAX_IDENTIFIER, *PRPC_SYNTAX_IDENTIFIER;
33 typedef struct _RPC_MESSAGE
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;
48 #endif /*__WINE_RPCDCE_H */