server: Add an async_data_t structure to store parameters for async I/O requests.
[wine] / tools / widl / widltypes.h
1 /*
2  * IDL Compiler
3  *
4  * Copyright 2002 Ove Kaaven
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifndef __WIDL_WIDLTYPES_H
22 #define __WIDL_WIDLTYPES_H
23
24 #include <stdarg.h>
25 #include "guiddef.h"
26 #include "wine/rpcfc.h"
27 #include "wine/list.h"
28
29 #ifndef UUID_DEFINED
30 #define UUID_DEFINED
31 typedef GUID UUID;
32 #endif
33
34 #define TRUE 1
35 #define FALSE 0
36
37 typedef struct _attr_t attr_t;
38 typedef struct _expr_t expr_t;
39 typedef struct _type_t type_t;
40 typedef struct _typeref_t typeref_t;
41 typedef struct _var_t var_t;
42 typedef struct _func_t func_t;
43 typedef struct _ifref_t ifref_t;
44 typedef struct _typelib_entry_t typelib_entry_t;
45 typedef struct _importlib_t importlib_t;
46 typedef struct _importinfo_t importinfo_t;
47 typedef struct _typelib_t typelib_t;
48
49 typedef struct list attr_list_t;
50 typedef struct list str_list_t;
51 typedef struct list func_list_t;
52 typedef struct list expr_list_t;
53 typedef struct list var_list_t;
54 typedef struct list ifref_list_t;
55 typedef struct list array_dims_t;
56
57 enum attr_type
58 {
59     ATTR_AGGREGATABLE,
60     ATTR_APPOBJECT,
61     ATTR_ASYNC,
62     ATTR_AUTO_HANDLE,
63     ATTR_BINDABLE,
64     ATTR_CALLAS,
65     ATTR_CASE,
66     ATTR_CONTEXTHANDLE,
67     ATTR_CONTROL,
68     ATTR_DEFAULT,
69     ATTR_DEFAULTCOLLELEM,
70     ATTR_DEFAULTVALUE_EXPR,
71     ATTR_DEFAULTVALUE_STRING,
72     ATTR_DEFAULTVTABLE,
73     ATTR_DISPINTERFACE,
74     ATTR_DISPLAYBIND,
75     ATTR_DLLNAME,
76     ATTR_DUAL,
77     ATTR_ENDPOINT,
78     ATTR_ENTRY_ORDINAL,
79     ATTR_ENTRY_STRING,
80     ATTR_EXPLICIT_HANDLE,
81     ATTR_HANDLE,
82     ATTR_HELPCONTEXT,
83     ATTR_HELPFILE,
84     ATTR_HELPSTRING,
85     ATTR_HELPSTRINGCONTEXT,
86     ATTR_HELPSTRINGDLL,
87     ATTR_HIDDEN,
88     ATTR_ID,
89     ATTR_IDEMPOTENT,
90     ATTR_IIDIS,
91     ATTR_IMMEDIATEBIND,
92     ATTR_IMPLICIT_HANDLE,
93     ATTR_IN,
94     ATTR_INPUTSYNC,
95     ATTR_LENGTHIS,
96     ATTR_LOCAL,
97     ATTR_NONBROWSABLE,
98     ATTR_NONCREATABLE,
99     ATTR_NONEXTENSIBLE,
100     ATTR_OBJECT,
101     ATTR_ODL,
102     ATTR_OLEAUTOMATION,
103     ATTR_OPTIONAL,
104     ATTR_OUT,
105     ATTR_POINTERDEFAULT,
106     ATTR_POINTERTYPE,
107     ATTR_PROPGET,
108     ATTR_PROPPUT,
109     ATTR_PROPPUTREF,
110     ATTR_PUBLIC,
111     ATTR_RANGE,
112     ATTR_READONLY,
113     ATTR_REQUESTEDIT,
114     ATTR_RESTRICTED,
115     ATTR_RETVAL,
116     ATTR_SIZEIS,
117     ATTR_SOURCE,
118     ATTR_STRING,
119     ATTR_SWITCHIS,
120     ATTR_SWITCHTYPE,
121     ATTR_TRANSMITAS,
122     ATTR_UUID,
123     ATTR_V1ENUM,
124     ATTR_VARARG,
125     ATTR_VERSION,
126     ATTR_WIREMARSHAL
127 };
128
129 enum expr_type
130 {
131     EXPR_VOID,
132     EXPR_NUM,
133     EXPR_HEXNUM,
134     EXPR_IDENTIFIER,
135     EXPR_NEG,
136     EXPR_NOT,
137     EXPR_PPTR,
138     EXPR_CAST,
139     EXPR_SIZEOF,
140     EXPR_SHL,
141     EXPR_SHR,
142     EXPR_MUL,
143     EXPR_DIV,
144     EXPR_ADD,
145     EXPR_SUB,
146     EXPR_AND,
147     EXPR_OR,
148     EXPR_COND,
149     EXPR_TRUEFALSE,
150 };
151
152 enum type_kind
153 {
154     TKIND_PRIMITIVE = -1,
155     TKIND_ENUM,
156     TKIND_RECORD,
157     TKIND_MODULE,
158     TKIND_INTERFACE,
159     TKIND_DISPATCH,
160     TKIND_COCLASS,
161     TKIND_ALIAS,
162     TKIND_UNION,
163     TKIND_MAX
164 };
165
166 struct str_list_entry_t
167 {
168     char *str;
169     struct list entry;
170 };
171
172 struct _attr_t {
173   enum attr_type type;
174   union {
175     unsigned long ival;
176     void *pval;
177   } u;
178   /* parser-internal */
179   struct list entry;
180 };
181
182 struct _expr_t {
183   enum expr_type type;
184   const expr_t *ref;
185   union {
186     long lval;
187     const char *sval;
188     const expr_t *ext;
189     const typeref_t *tref;
190   } u;
191   const expr_t *ext2;
192   int is_const;
193   long cval;
194   /* parser-internal */
195   struct list entry;
196 };
197
198 struct _type_t {
199   const char *name;
200   enum type_kind kind;
201   unsigned char type;
202   struct _type_t *ref;
203   const attr_list_t *attrs;
204   func_list_t *funcs;             /* interfaces and modules */
205   var_list_t *fields;             /* interfaces, structures and enumerations */
206   ifref_list_t *ifaces;           /* coclasses */
207   type_t *orig;                   /* dup'd types */
208   int ignore, is_const, sign;
209   int defined, written, user_types_registered;
210   int typelib_idx;
211 };
212
213 struct _typeref_t {
214   char *name;
215   type_t *ref;
216   int uniq;
217 };
218
219 struct _var_t {
220   char *name;
221   int ptr_level;
222   array_dims_t *array;
223   type_t *type;
224   var_list_t *args;  /* for function pointers */
225   const char *tname;
226   attr_list_t *attrs;
227   expr_t *eval;
228
229   /* parser-internal */
230   struct list entry;
231 };
232
233 struct _func_t {
234   var_t *def;
235   var_list_t *args;
236   int ignore, idx;
237
238   /* parser-internal */
239   struct list entry;
240 };
241
242 struct _ifref_t {
243   type_t *iface;
244   attr_list_t *attrs;
245
246   /* parser-internal */
247   struct list entry;
248 };
249
250 struct _typelib_entry_t {
251     type_t *type;
252     struct list entry;
253 };
254
255 struct _importinfo_t {
256     int offset;
257     GUID guid;
258     int flags;
259     int id;
260
261     char *name;
262
263     importlib_t *importlib;
264 };
265
266 struct _importlib_t {
267     char *name;
268
269     int version;
270     GUID guid;
271
272     importinfo_t *importinfos;
273     int ntypeinfos;
274
275     int allocated;
276
277     struct list entry;
278 };
279
280 struct _typelib_t {
281     char *name;
282     char *filename;
283     attr_list_t *attrs;
284     struct list entries;
285     struct list importlibs;
286 };
287
288 void init_types(void);
289
290 type_t *duptype(type_t *t, int dupname);
291 type_t *alias(type_t *t, const char *name);
292
293 int is_ptr(const type_t *t);
294 int is_var_ptr(const var_t *v);
295 int cant_be_null(const var_t *v);
296
297 #endif