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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21 #ifndef __WIDL_WIDLTYPES_H
22 #define __WIDL_WIDLTYPES_H
26 #include "wine/rpcfc.h"
36 typedef struct _attr_t attr_t
;
37 typedef struct _expr_t expr_t
;
38 typedef struct _type_t type_t
;
39 typedef struct _typeref_t typeref_t
;
40 typedef struct _var_t var_t
;
41 typedef struct _func_t func_t
;
42 typedef struct _ifref_t ifref_t
;
43 typedef struct _class_t class_t
;
44 typedef struct _typelib_entry_t typelib_entry_t
;
45 typedef struct _typelib_t typelib_t
;
47 #define DECL_LINK(type) \
51 #define LINK(x,y) do { x->l_next = y; if (y) y->l_prev = x; } while (0)
53 #define INIT_LINK(x) do { x->l_next = NULL; x->l_prev = NULL; } while (0)
54 #define NEXT_LINK(x) ((x)->l_next)
55 #define PREV_LINK(x) ((x)->l_prev)
67 ATTR_DEFAULTVALUE_EXPR
,
68 ATTR_DEFAULTVALUE_STRING
,
81 ATTR_HELPSTRINGCONTEXT
,
162 /* parser-internal */
178 /* parser-internal */
190 int ignore
, is_const
, sign
;
191 int defined
, written
, user_types_registered
;
193 /* parser-internal */
208 var_t
*args
; /* for function pointers */
214 /* parser-internal */
223 /* parser-internal */
231 /* parser-internal */
240 /* parser-internal */
244 struct _typelib_entry_t
{
254 DECL_LINK(typelib_entry_t
)
261 typelib_entry_t
*entry
;