dplayx: Tests for CreatePlayer.
[wine/gsoc_dplay.git] / tools / widl / typelib.h
blob486dbb49e3e3f7ded8991786865caca98aecb452
1 /*
2 * IDL Compiler
4 * Copyright 2004 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_TYPELIB_H
22 #define __WIDL_TYPELIB_H
24 extern int in_typelib;
25 extern void start_typelib(typelib_t *typelib_type);
26 extern void end_typelib(void);
27 extern void add_typelib_entry(type_t *t);
28 extern void add_importlib(const char *name);
30 /* Copied from wtypes.h. Not included directly because that would create a
31 * circular dependency (after all, wtypes.h is generated by widl...) */
33 enum VARENUM {
34 VT_EMPTY = 0,
35 VT_NULL = 1,
36 VT_I2 = 2,
37 VT_I4 = 3,
38 VT_R4 = 4,
39 VT_R8 = 5,
40 VT_CY = 6,
41 VT_DATE = 7,
42 VT_BSTR = 8,
43 VT_DISPATCH = 9,
44 VT_ERROR = 10,
45 VT_BOOL = 11,
46 VT_VARIANT = 12,
47 VT_UNKNOWN = 13,
48 VT_DECIMAL = 14,
49 VT_I1 = 16,
50 VT_UI1 = 17,
51 VT_UI2 = 18,
52 VT_UI4 = 19,
53 VT_I8 = 20,
54 VT_UI8 = 21,
55 VT_INT = 22,
56 VT_UINT = 23,
57 VT_VOID = 24,
58 VT_HRESULT = 25,
59 VT_PTR = 26,
60 VT_SAFEARRAY = 27,
61 VT_CARRAY = 28,
62 VT_USERDEFINED = 29,
63 VT_LPSTR = 30,
64 VT_LPWSTR = 31,
65 VT_RECORD = 36,
66 VT_FILETIME = 64,
67 VT_BLOB = 65,
68 VT_STREAM = 66,
69 VT_STORAGE = 67,
70 VT_STREAMED_OBJECT = 68,
71 VT_STORED_OBJECT = 69,
72 VT_BLOB_OBJECT = 70,
73 VT_CF = 71,
74 VT_CLSID = 72,
75 VT_BSTR_BLOB = 0xfff,
76 VT_VECTOR = 0x1000,
77 VT_ARRAY = 0x2000,
78 VT_BYREF = 0x4000,
79 VT_RESERVED = 0x8000,
80 VT_ILLEGAL = 0xffff,
81 VT_ILLEGALMASKED = 0xfff,
82 VT_TYPEMASK = 0xfff
84 extern unsigned short get_type_vt(type_t *t);
86 extern int create_msft_typelib(typelib_t *typelib);
87 #endif