330 lines
6.7 KiB
C
330 lines
6.7 KiB
C
/*
|
|
* IDL Compiler
|
|
*
|
|
* Copyright 2002 Ove Kaaven
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library; if not, write to the Free Software
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
|
*/
|
|
|
|
#ifndef __WIDL_WIDLTYPES_H
|
|
#define __WIDL_WIDLTYPES_H
|
|
|
|
#include <stdarg.h>
|
|
#include "guiddef.h"
|
|
#include "wine/rpcfc.h"
|
|
#include "wine/list.h"
|
|
|
|
#ifndef UUID_DEFINED
|
|
#define UUID_DEFINED
|
|
typedef GUID UUID;
|
|
#endif
|
|
|
|
#define TRUE 1
|
|
#define FALSE 0
|
|
|
|
typedef struct _attr_t attr_t;
|
|
typedef struct _expr_t expr_t;
|
|
typedef struct _type_t type_t;
|
|
typedef struct _typeref_t typeref_t;
|
|
typedef struct _var_t var_t;
|
|
typedef struct _pident_t pident_t;
|
|
typedef struct _func_t func_t;
|
|
typedef struct _ifref_t ifref_t;
|
|
typedef struct _typelib_entry_t typelib_entry_t;
|
|
typedef struct _importlib_t importlib_t;
|
|
typedef struct _importinfo_t importinfo_t;
|
|
typedef struct _typelib_t typelib_t;
|
|
typedef struct _user_type_t user_type_t;
|
|
typedef struct _user_type_t context_handle_t;
|
|
|
|
typedef struct list attr_list_t;
|
|
typedef struct list str_list_t;
|
|
typedef struct list func_list_t;
|
|
typedef struct list expr_list_t;
|
|
typedef struct list var_list_t;
|
|
typedef struct list pident_list_t;
|
|
typedef struct list ifref_list_t;
|
|
typedef struct list array_dims_t;
|
|
typedef struct list user_type_list_t;
|
|
typedef struct list context_handle_list_t;
|
|
|
|
enum attr_type
|
|
{
|
|
ATTR_AGGREGATABLE,
|
|
ATTR_APPOBJECT,
|
|
ATTR_ASYNC,
|
|
ATTR_AUTO_HANDLE,
|
|
ATTR_BINDABLE,
|
|
ATTR_CALLAS,
|
|
ATTR_CASE,
|
|
ATTR_CONTEXTHANDLE,
|
|
ATTR_CONTROL,
|
|
ATTR_DEFAULT,
|
|
ATTR_DEFAULTCOLLELEM,
|
|
ATTR_DEFAULTVALUE_EXPR,
|
|
ATTR_DEFAULTVALUE_STRING,
|
|
ATTR_DEFAULTVTABLE,
|
|
ATTR_DISPINTERFACE,
|
|
ATTR_DISPLAYBIND,
|
|
ATTR_DLLNAME,
|
|
ATTR_DUAL,
|
|
ATTR_ENDPOINT,
|
|
ATTR_ENTRY_ORDINAL,
|
|
ATTR_ENTRY_STRING,
|
|
ATTR_EXPLICIT_HANDLE,
|
|
ATTR_HANDLE,
|
|
ATTR_HELPCONTEXT,
|
|
ATTR_HELPFILE,
|
|
ATTR_HELPSTRING,
|
|
ATTR_HELPSTRINGCONTEXT,
|
|
ATTR_HELPSTRINGDLL,
|
|
ATTR_HIDDEN,
|
|
ATTR_ID,
|
|
ATTR_IDEMPOTENT,
|
|
ATTR_IIDIS,
|
|
ATTR_IMMEDIATEBIND,
|
|
ATTR_IMPLICIT_HANDLE,
|
|
ATTR_IN,
|
|
ATTR_INPUTSYNC,
|
|
ATTR_LENGTHIS,
|
|
ATTR_LOCAL,
|
|
ATTR_NONBROWSABLE,
|
|
ATTR_NONCREATABLE,
|
|
ATTR_NONEXTENSIBLE,
|
|
ATTR_OBJECT,
|
|
ATTR_ODL,
|
|
ATTR_OLEAUTOMATION,
|
|
ATTR_OPTIONAL,
|
|
ATTR_OUT,
|
|
ATTR_POINTERDEFAULT,
|
|
ATTR_POINTERTYPE,
|
|
ATTR_PROPGET,
|
|
ATTR_PROPPUT,
|
|
ATTR_PROPPUTREF,
|
|
ATTR_PUBLIC,
|
|
ATTR_RANGE,
|
|
ATTR_READONLY,
|
|
ATTR_REQUESTEDIT,
|
|
ATTR_RESTRICTED,
|
|
ATTR_RETVAL,
|
|
ATTR_SIZEIS,
|
|
ATTR_SOURCE,
|
|
ATTR_STRING,
|
|
ATTR_SWITCHIS,
|
|
ATTR_SWITCHTYPE,
|
|
ATTR_TRANSMITAS,
|
|
ATTR_UUID,
|
|
ATTR_V1ENUM,
|
|
ATTR_VARARG,
|
|
ATTR_VERSION,
|
|
ATTR_WIREMARSHAL
|
|
};
|
|
|
|
enum expr_type
|
|
{
|
|
EXPR_VOID,
|
|
EXPR_NUM,
|
|
EXPR_HEXNUM,
|
|
EXPR_DOUBLE,
|
|
EXPR_IDENTIFIER,
|
|
EXPR_NEG,
|
|
EXPR_NOT,
|
|
EXPR_PPTR,
|
|
EXPR_CAST,
|
|
EXPR_SIZEOF,
|
|
EXPR_SHL,
|
|
EXPR_SHR,
|
|
EXPR_MUL,
|
|
EXPR_DIV,
|
|
EXPR_ADD,
|
|
EXPR_SUB,
|
|
EXPR_AND,
|
|
EXPR_OR,
|
|
EXPR_COND,
|
|
EXPR_TRUEFALSE,
|
|
};
|
|
|
|
enum type_kind
|
|
{
|
|
TKIND_PRIMITIVE = -1,
|
|
TKIND_ENUM,
|
|
TKIND_RECORD,
|
|
TKIND_MODULE,
|
|
TKIND_INTERFACE,
|
|
TKIND_DISPATCH,
|
|
TKIND_COCLASS,
|
|
TKIND_ALIAS,
|
|
TKIND_UNION,
|
|
TKIND_MAX
|
|
};
|
|
|
|
struct str_list_entry_t
|
|
{
|
|
char *str;
|
|
struct list entry;
|
|
};
|
|
|
|
struct _attr_t {
|
|
enum attr_type type;
|
|
union {
|
|
unsigned long ival;
|
|
void *pval;
|
|
} u;
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _expr_t {
|
|
enum expr_type type;
|
|
const expr_t *ref;
|
|
union {
|
|
long lval;
|
|
double dval;
|
|
const char *sval;
|
|
const expr_t *ext;
|
|
type_t *tref;
|
|
} u;
|
|
const expr_t *ext2;
|
|
int is_const;
|
|
long cval;
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _type_t {
|
|
const char *name;
|
|
enum type_kind kind;
|
|
unsigned char type;
|
|
struct _type_t *ref;
|
|
const attr_list_t *attrs;
|
|
func_list_t *funcs; /* interfaces and modules */
|
|
var_list_t *fields; /* interfaces, structures and enumerations */
|
|
ifref_list_t *ifaces; /* coclasses */
|
|
unsigned long dim; /* array dimension */
|
|
expr_t *size_is, *length_is;
|
|
type_t *orig; /* dup'd types */
|
|
unsigned int typestring_offset;
|
|
unsigned int ptrdesc; /* used for complex structs */
|
|
int typelib_idx;
|
|
unsigned int declarray : 1; /* if declared as an array */
|
|
unsigned int ignore : 1;
|
|
unsigned int is_const : 1;
|
|
unsigned int defined : 1;
|
|
unsigned int written : 1;
|
|
unsigned int user_types_registered : 1;
|
|
unsigned int tfswrite : 1; /* if the type needs to be written to the TFS */
|
|
int sign : 2;
|
|
};
|
|
|
|
struct _var_t {
|
|
char *name;
|
|
type_t *type;
|
|
var_list_t *args; /* for function pointers */
|
|
attr_list_t *attrs;
|
|
expr_t *eval;
|
|
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _pident_t {
|
|
var_t *var;
|
|
int ptr_level;
|
|
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _func_t {
|
|
var_t *def;
|
|
var_list_t *args;
|
|
int ignore, idx;
|
|
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _ifref_t {
|
|
type_t *iface;
|
|
attr_list_t *attrs;
|
|
|
|
/* parser-internal */
|
|
struct list entry;
|
|
};
|
|
|
|
struct _typelib_entry_t {
|
|
type_t *type;
|
|
struct list entry;
|
|
};
|
|
|
|
struct _importinfo_t {
|
|
int offset;
|
|
GUID guid;
|
|
int flags;
|
|
int id;
|
|
|
|
char *name;
|
|
|
|
importlib_t *importlib;
|
|
};
|
|
|
|
struct _importlib_t {
|
|
char *name;
|
|
|
|
int version;
|
|
GUID guid;
|
|
|
|
importinfo_t *importinfos;
|
|
int ntypeinfos;
|
|
|
|
int allocated;
|
|
|
|
struct list entry;
|
|
};
|
|
|
|
struct _typelib_t {
|
|
char *name;
|
|
char *filename;
|
|
attr_list_t *attrs;
|
|
struct list entries;
|
|
struct list importlibs;
|
|
};
|
|
|
|
struct _user_type_t {
|
|
struct list entry;
|
|
const char *name;
|
|
};
|
|
|
|
extern unsigned char pointer_default;
|
|
|
|
extern user_type_list_t user_type_list;
|
|
void check_for_user_types_and_context_handles(const var_list_t *list);
|
|
|
|
void init_types(void);
|
|
type_t *alloc_type(void);
|
|
void set_all_tfswrite(int val);
|
|
|
|
type_t *duptype(type_t *t, int dupname);
|
|
type_t *alias(type_t *t, const char *name);
|
|
|
|
int is_ptr(const type_t *t);
|
|
int is_array(const type_t *t);
|
|
int is_var_ptr(const var_t *v);
|
|
int cant_be_null(const var_t *v);
|
|
int is_struct(unsigned char tc);
|
|
int is_union(unsigned char tc);
|
|
|
|
#endif
|