libwine: Emulate MS linker stub for builtin dlls.
[wine/wine64.git] / tools / widl / widltypes.h
blob4145be2661bc61c305cf2787cfbaa8ca59ea27d0
1 /*
2 * IDL Compiler
4 * Copyright 2002 Ove Kaaven
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.
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.
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
21 #ifndef __WIDL_WIDLTYPES_H
22 #define __WIDL_WIDLTYPES_H
24 #include <stdarg.h>
25 #include "guiddef.h"
26 #include "wine/rpcfc.h"
27 #include "wine/list.h"
29 #ifndef UUID_DEFINED
30 #define UUID_DEFINED
31 typedef GUID UUID;
32 #endif
34 #define TRUE 1
35 #define FALSE 0
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 _pident_t pident_t;
43 typedef struct _func_t func_t;
44 typedef struct _ifref_t ifref_t;
45 typedef struct _typelib_entry_t typelib_entry_t;
46 typedef struct _importlib_t importlib_t;
47 typedef struct _importinfo_t importinfo_t;
48 typedef struct _typelib_t typelib_t;
49 typedef struct _user_type_t user_type_t;
50 typedef struct _user_type_t context_handle_t;
52 typedef struct list attr_list_t;
53 typedef struct list str_list_t;
54 typedef struct list func_list_t;
55 typedef struct list expr_list_t;
56 typedef struct list var_list_t;
57 typedef struct list pident_list_t;
58 typedef struct list ifref_list_t;
59 typedef struct list array_dims_t;
60 typedef struct list user_type_list_t;
61 typedef struct list context_handle_list_t;
63 enum attr_type
65 ATTR_AGGREGATABLE,
66 ATTR_APPOBJECT,
67 ATTR_ASYNC,
68 ATTR_AUTO_HANDLE,
69 ATTR_BINDABLE,
70 ATTR_CALLAS,
71 ATTR_CASE,
72 ATTR_CONTEXTHANDLE,
73 ATTR_CONTROL,
74 ATTR_DEFAULT,
75 ATTR_DEFAULTCOLLELEM,
76 ATTR_DEFAULTVALUE_EXPR,
77 ATTR_DEFAULTVALUE_STRING,
78 ATTR_DEFAULTVTABLE,
79 ATTR_DISPINTERFACE,
80 ATTR_DISPLAYBIND,
81 ATTR_DLLNAME,
82 ATTR_DUAL,
83 ATTR_ENDPOINT,
84 ATTR_ENTRY_ORDINAL,
85 ATTR_ENTRY_STRING,
86 ATTR_EXPLICIT_HANDLE,
87 ATTR_HANDLE,
88 ATTR_HELPCONTEXT,
89 ATTR_HELPFILE,
90 ATTR_HELPSTRING,
91 ATTR_HELPSTRINGCONTEXT,
92 ATTR_HELPSTRINGDLL,
93 ATTR_HIDDEN,
94 ATTR_ID,
95 ATTR_IDEMPOTENT,
96 ATTR_IIDIS,
97 ATTR_IMMEDIATEBIND,
98 ATTR_IMPLICIT_HANDLE,
99 ATTR_IN,
100 ATTR_INPUTSYNC,
101 ATTR_LENGTHIS,
102 ATTR_LOCAL,
103 ATTR_NONBROWSABLE,
104 ATTR_NONCREATABLE,
105 ATTR_NONEXTENSIBLE,
106 ATTR_OBJECT,
107 ATTR_ODL,
108 ATTR_OLEAUTOMATION,
109 ATTR_OPTIONAL,
110 ATTR_OUT,
111 ATTR_POINTERDEFAULT,
112 ATTR_POINTERTYPE,
113 ATTR_PROPGET,
114 ATTR_PROPPUT,
115 ATTR_PROPPUTREF,
116 ATTR_PUBLIC,
117 ATTR_RANGE,
118 ATTR_READONLY,
119 ATTR_REQUESTEDIT,
120 ATTR_RESTRICTED,
121 ATTR_RETVAL,
122 ATTR_SIZEIS,
123 ATTR_SOURCE,
124 ATTR_STRING,
125 ATTR_SWITCHIS,
126 ATTR_SWITCHTYPE,
127 ATTR_TRANSMITAS,
128 ATTR_UUID,
129 ATTR_V1ENUM,
130 ATTR_VARARG,
131 ATTR_VERSION,
132 ATTR_WIREMARSHAL
135 enum expr_type
137 EXPR_VOID,
138 EXPR_NUM,
139 EXPR_HEXNUM,
140 EXPR_DOUBLE,
141 EXPR_IDENTIFIER,
142 EXPR_NEG,
143 EXPR_NOT,
144 EXPR_PPTR,
145 EXPR_CAST,
146 EXPR_SIZEOF,
147 EXPR_SHL,
148 EXPR_SHR,
149 EXPR_MUL,
150 EXPR_DIV,
151 EXPR_ADD,
152 EXPR_SUB,
153 EXPR_AND,
154 EXPR_OR,
155 EXPR_COND,
156 EXPR_TRUEFALSE,
159 enum type_kind
161 TKIND_PRIMITIVE = -1,
162 TKIND_ENUM,
163 TKIND_RECORD,
164 TKIND_MODULE,
165 TKIND_INTERFACE,
166 TKIND_DISPATCH,
167 TKIND_COCLASS,
168 TKIND_ALIAS,
169 TKIND_UNION,
170 TKIND_MAX
173 struct str_list_entry_t
175 char *str;
176 struct list entry;
179 struct _attr_t {
180 enum attr_type type;
181 union {
182 unsigned long ival;
183 void *pval;
184 } u;
185 /* parser-internal */
186 struct list entry;
189 struct _expr_t {
190 enum expr_type type;
191 const expr_t *ref;
192 union {
193 long lval;
194 double dval;
195 const char *sval;
196 const expr_t *ext;
197 type_t *tref;
198 } u;
199 const expr_t *ext2;
200 int is_const;
201 long cval;
202 /* parser-internal */
203 struct list entry;
206 struct _type_t {
207 const char *name;
208 enum type_kind kind;
209 unsigned char type;
210 struct _type_t *ref;
211 const attr_list_t *attrs;
212 func_list_t *funcs; /* interfaces and modules */
213 var_list_t *fields; /* interfaces, structures and enumerations */
214 ifref_list_t *ifaces; /* coclasses */
215 unsigned long dim; /* array dimension */
216 expr_t *size_is, *length_is;
217 type_t *orig; /* dup'd types */
218 unsigned int typestring_offset;
219 unsigned int ptrdesc; /* used for complex structs */
220 int typelib_idx;
221 unsigned int declarray : 1; /* if declared as an array */
222 unsigned int ignore : 1;
223 unsigned int is_const : 1;
224 unsigned int defined : 1;
225 unsigned int written : 1;
226 unsigned int user_types_registered : 1;
227 unsigned int tfswrite : 1; /* if the type needs to be written to the TFS */
228 int sign : 2;
231 struct _var_t {
232 char *name;
233 type_t *type;
234 var_list_t *args; /* for function pointers */
235 attr_list_t *attrs;
236 expr_t *eval;
238 /* parser-internal */
239 struct list entry;
242 struct _pident_t {
243 var_t *var;
244 int ptr_level;
246 /* parser-internal */
247 struct list entry;
250 struct _func_t {
251 var_t *def;
252 var_list_t *args;
253 int ignore, idx;
255 /* parser-internal */
256 struct list entry;
259 struct _ifref_t {
260 type_t *iface;
261 attr_list_t *attrs;
263 /* parser-internal */
264 struct list entry;
267 struct _typelib_entry_t {
268 type_t *type;
269 struct list entry;
272 struct _importinfo_t {
273 int offset;
274 GUID guid;
275 int flags;
276 int id;
278 char *name;
280 importlib_t *importlib;
283 struct _importlib_t {
284 char *name;
286 int version;
287 GUID guid;
289 importinfo_t *importinfos;
290 int ntypeinfos;
292 int allocated;
294 struct list entry;
297 struct _typelib_t {
298 char *name;
299 char *filename;
300 attr_list_t *attrs;
301 struct list entries;
302 struct list importlibs;
305 struct _user_type_t {
306 struct list entry;
307 const char *name;
310 extern unsigned char pointer_default;
312 extern user_type_list_t user_type_list;
313 void check_for_user_types_and_context_handles(const var_list_t *list);
315 void init_types(void);
316 type_t *alloc_type(void);
317 void set_all_tfswrite(int val);
319 type_t *duptype(type_t *t, int dupname);
320 type_t *alias(type_t *t, const char *name);
322 int is_ptr(const type_t *t);
323 int is_array(const type_t *t);
324 int is_var_ptr(const var_t *v);
325 int cant_be_null(const var_t *v);
326 int is_struct(unsigned char tc);
327 int is_union(unsigned char tc);
329 #endif