wnaspi32: Make winaspi.dll into a stand-alone 16-bit module.
[wine] / tools / widl / write_msft.c
1 /*
2  *      Typelib v2 (MSFT) generation
3  *
4  *      Copyright 2004  Alastair Bridgewater
5  *                2004, 2005 Huw Davies
6  *
7  * This library is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU Lesser General Public
9  * License as published by the Free Software Foundation; either
10  * version 2.1 of the License, or (at your option) any later version.
11  *
12  * This library is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * Lesser General Public License for more details.
16  *
17  * You should have received a copy of the GNU Lesser General Public
18  * License along with this library; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20  *
21  * --------------------------------------------------------------------------------------
22  *  Known problems:
23  *
24  *    Badly incomplete.
25  *
26  *    Only works on little-endian systems.
27  *
28  */
29
30 #include "config.h"
31 #include "wine/port.h"
32
33 #include <stdlib.h>
34 #include <string.h>
35 #include <stdarg.h>
36 #include <stdio.h>
37 #include <ctype.h>
38 #include <time.h>
39
40 #define NONAMELESSUNION
41 #define NONAMELESSSTRUCT
42
43 #include "winerror.h"
44 #include "windef.h"
45 #include "winbase.h"
46 #include "winnls.h"
47
48 #include "widltypes.h"
49 #include "typelib.h"
50 #include "typelib_struct.h"
51 #include "utils.h"
52 #include "header.h"
53 #include "hash.h"
54 #include "typetree.h"
55
56 enum MSFT_segment_index {
57     MSFT_SEG_TYPEINFO = 0,  /* type information */
58     MSFT_SEG_IMPORTINFO,    /* import information */
59     MSFT_SEG_IMPORTFILES,   /* import filenames */
60     MSFT_SEG_REFERENCES,    /* references (?) */
61     MSFT_SEG_GUIDHASH,      /* hash table for guids? */
62     MSFT_SEG_GUID,          /* guid storage */
63     MSFT_SEG_NAMEHASH,      /* hash table for names */
64     MSFT_SEG_NAME,          /* name storage */
65     MSFT_SEG_STRING,        /* string storage */
66     MSFT_SEG_TYPEDESC,      /* type descriptions */
67     MSFT_SEG_ARRAYDESC,     /* array descriptions */
68     MSFT_SEG_CUSTDATA,      /* custom data */
69     MSFT_SEG_CUSTDATAGUID,  /* custom data guids */
70     MSFT_SEG_UNKNOWN,       /* ??? */
71     MSFT_SEG_UNKNOWN2,      /* ??? */
72     MSFT_SEG_MAX            /* total number of segments */
73 };
74
75 typedef struct tagMSFT_ImpFile {
76     int guid;
77     LCID lcid;
78     int version;
79     char filename[0]; /* preceded by two bytes of encoded (length << 2) + flags in the low two bits. */
80 } MSFT_ImpFile;
81
82 typedef struct _msft_typelib_t
83 {
84     typelib_t *typelib;
85     MSFT_Header typelib_header;
86     MSFT_pSeg typelib_segdir[MSFT_SEG_MAX];
87     char *typelib_segment_data[MSFT_SEG_MAX];
88     int typelib_segment_block_length[MSFT_SEG_MAX];
89
90     INT typelib_typeinfo_offsets[0x200]; /* Hope that's enough. */
91
92     INT *typelib_namehash_segment;
93     INT *typelib_guidhash_segment;
94
95     INT help_string_dll_offset;
96
97     struct _msft_typeinfo_t *typeinfos;
98     struct _msft_typeinfo_t *last_typeinfo;
99 } msft_typelib_t;
100
101 typedef struct _msft_typeinfo_t
102 {
103     msft_typelib_t *typelib;
104     MSFT_TypeInfoBase *typeinfo;
105
106     int typekind;
107
108     unsigned int var_data_allocated;
109     int *var_data;
110
111     unsigned int func_data_allocated;
112     int *func_data;
113
114     int vars_allocated;
115     int *var_indices;
116     int *var_names;
117     int *var_offsets;
118
119     int funcs_allocated;
120     int *func_indices;
121     int *func_names;
122     int *func_offsets;
123
124     int datawidth;
125
126     struct _msft_typeinfo_t *next_typeinfo;
127 } msft_typeinfo_t;
128
129
130
131 /*================== Internal functions ===================================*/
132
133 /****************************************************************************
134  *      ctl2_init_header
135  *
136  *  Initializes the type library header of a new typelib.
137  */
138 static void ctl2_init_header(
139         msft_typelib_t *typelib) /* [I] The typelib to initialize. */
140 {
141     typelib->typelib_header.magic1 = 0x5446534d;
142     typelib->typelib_header.magic2 = 0x00010002;
143     typelib->typelib_header.posguid = -1;
144     typelib->typelib_header.lcid = 0x0409; /* or do we use the current one? */
145     typelib->typelib_header.lcid2 = 0x0;
146     typelib->typelib_header.varflags = 0x40;
147     typelib->typelib_header.version = 0;
148     typelib->typelib_header.flags = 0;
149     typelib->typelib_header.nrtypeinfos = 0;
150     typelib->typelib_header.helpstring = -1;
151     typelib->typelib_header.helpstringcontext = 0;
152     typelib->typelib_header.helpcontext = 0;
153     typelib->typelib_header.nametablecount = 0;
154     typelib->typelib_header.nametablechars = 0;
155     typelib->typelib_header.NameOffset = -1;
156     typelib->typelib_header.helpfile = -1;
157     typelib->typelib_header.CustomDataOffset = -1;
158     typelib->typelib_header.res44 = 0x20;
159     typelib->typelib_header.res48 = 0x80;
160     typelib->typelib_header.dispatchpos = -1;
161     typelib->typelib_header.nimpinfos = 0;
162 }
163
164 /****************************************************************************
165  *      ctl2_init_segdir
166  *
167  *  Initializes the segment directory of a new typelib.
168  */
169 static void ctl2_init_segdir(
170         msft_typelib_t *typelib) /* [I] The typelib to initialize. */
171 {
172     int i;
173     MSFT_pSeg *segdir;
174
175     segdir = &typelib->typelib_segdir[MSFT_SEG_TYPEINFO];
176
177     for (i = 0; i < 15; i++) {
178         segdir[i].offset = -1;
179         segdir[i].length = 0;
180         segdir[i].res08 = -1;
181         segdir[i].res0c = 0x0f;
182     }
183 }
184
185 /****************************************************************************
186  *      ctl2_hash_guid
187  *
188  *  Generates a hash key from a GUID.
189  *
190  * RETURNS
191  *
192  *  The hash key for the GUID.
193  */
194 static int ctl2_hash_guid(
195         REFGUID guid)                /* [I] The guid to hash. */
196 {
197     int hash;
198     int i;
199
200     hash = 0;
201     for (i = 0; i < 8; i ++) {
202         hash ^= ((const short *)guid)[i];
203     }
204
205     return hash & 0x1f;
206 }
207
208 /****************************************************************************
209  *      ctl2_find_guid
210  *
211  *  Locates a guid in a type library.
212  *
213  * RETURNS
214  *
215  *  The offset into the GUID segment of the guid, or -1 if not found.
216  */
217 static int ctl2_find_guid(
218         msft_typelib_t *typelib,   /* [I] The typelib to operate against. */
219         int hash_key,              /* [I] The hash key for the guid. */
220         REFGUID guid)              /* [I] The guid to find. */
221 {
222     int offset;
223     MSFT_GuidEntry *guidentry;
224
225     offset = typelib->typelib_guidhash_segment[hash_key];
226     while (offset != -1) {
227         guidentry = (MSFT_GuidEntry *)&typelib->typelib_segment_data[MSFT_SEG_GUID][offset];
228
229         if (!memcmp(guidentry, guid, sizeof(GUID))) return offset;
230
231         offset = guidentry->next_hash;
232     }
233
234     return offset;
235 }
236
237 /****************************************************************************
238  *      ctl2_find_name
239  *
240  *  Locates a name in a type library.
241  *
242  * RETURNS
243  *
244  *  The offset into the NAME segment of the name, or -1 if not found.
245  *
246  * NOTES
247  *
248  *  The name must be encoded as with ctl2_encode_name().
249  */
250 static int ctl2_find_name(
251         msft_typelib_t *typelib,   /* [I] The typelib to operate against. */
252         char *name)                /* [I] The encoded name to find. */
253 {
254     int offset;
255     int *namestruct;
256
257     offset = typelib->typelib_namehash_segment[name[2] & 0x7f];
258     while (offset != -1) {
259         namestruct = (int *)&typelib->typelib_segment_data[MSFT_SEG_NAME][offset];
260
261         if (!((namestruct[2] ^ *((int *)name)) & 0xffff00ff)) {
262             /* hash codes and lengths match, final test */
263             if (!strncasecmp(name+4, (void *)(namestruct+3), name[0])) break;
264         }
265
266         /* move to next item in hash bucket */
267         offset = namestruct[1];
268     }
269
270     return offset;
271 }
272
273 /****************************************************************************
274  *      ctl2_encode_name
275  *
276  *  Encodes a name string to a form suitable for storing into a type library
277  *  or comparing to a name stored in a type library.
278  *
279  * RETURNS
280  *
281  *  The length of the encoded name, including padding and length+hash fields.
282  *
283  * NOTES
284  *
285  *  Will throw an exception if name or result are NULL. Is not multithread
286  *  safe in the slightest.
287  */
288 static int ctl2_encode_name(
289         msft_typelib_t *typelib,   /* [I] The typelib to operate against (used for LCID only). */
290         const char *name,          /* [I] The name string to encode. */
291         char **result)             /* [O] A pointer to a pointer to receive the encoded name. */
292 {
293     int length;
294     static char converted_name[0x104];
295     int offset;
296     int value;
297
298     length = strlen(name);
299     memcpy(converted_name + 4, name, length);
300
301     converted_name[length + 4] = 0;
302
303
304     value = lhash_val_of_name_sys(typelib->typelib_header.varflags & 0x0f, typelib->typelib_header.lcid, converted_name + 4);
305
306 #ifdef WORDS_BIGENDIAN
307     converted_name[3] = length & 0xff;
308     converted_name[2] = 0x00;
309     converted_name[1] = value;
310     converted_name[0] = value >> 8;
311 #else
312     converted_name[0] = length & 0xff;
313     converted_name[1] = 0x00;
314     converted_name[2] = value;
315     converted_name[3] = value >> 8;
316 #endif
317
318     for (offset = (4 - length) & 3; offset; offset--) converted_name[length + offset + 3] = 0x57;
319
320     *result = converted_name;
321
322     return (length + 7) & ~3;
323 }
324
325 /****************************************************************************
326  *      ctl2_encode_string
327  *
328  *  Encodes a string to a form suitable for storing into a type library or
329  *  comparing to a string stored in a type library.
330  *
331  * RETURNS
332  *
333  *  The length of the encoded string, including padding and length fields.
334  *
335  * NOTES
336  *
337  *  Will throw an exception if string or result are NULL. Is not multithread
338  *  safe in the slightest.
339  */
340 static int ctl2_encode_string(
341         const char *string,        /* [I] The string to encode. */
342         char **result)             /* [O] A pointer to a pointer to receive the encoded string. */
343 {
344     int length;
345     static char converted_string[0x104];
346     int offset;
347
348     length = strlen(string);
349     memcpy(converted_string + 2, string, length);
350
351 #ifdef WORDS_BIGENDIAN
352     converted_string[1] = length & 0xff;
353     converted_string[0] = (length >> 8) & 0xff;
354 #else
355     converted_string[0] = length & 0xff;
356     converted_string[1] = (length >> 8) & 0xff;
357 #endif
358
359     if(length < 3) { /* strings of this length are padded with up to 8 bytes incl the 2 byte length */
360         for(offset = 0; offset < 4; offset++)
361             converted_string[length + offset + 2] = 0x57;
362         length += 4;
363     }
364     for (offset = (4 - (length + 2)) & 3; offset; offset--) converted_string[length + offset + 1] = 0x57;
365
366     *result = converted_string;
367
368     return (length + 5) & ~3;
369 }
370
371 /****************************************************************************
372  *      ctl2_alloc_segment
373  *
374  *  Allocates memory from a segment in a type library.
375  *
376  * RETURNS
377  *
378  *  Success: The offset within the segment of the new data area.
379  *
380  * BUGS
381  *
382  *  Does not (yet) handle the case where the allocated segment memory needs to grow.
383  */
384 static int ctl2_alloc_segment(
385         msft_typelib_t *typelib,         /* [I] The type library in which to allocate. */
386         enum MSFT_segment_index segment, /* [I] The segment in which to allocate. */
387         int size,                        /* [I] The amount to allocate. */
388         int block_size)                  /* [I] Initial allocation block size, or 0 for default. */
389 {
390     int offset;
391
392     if(!typelib->typelib_segment_data[segment]) {
393         if (!block_size) block_size = 0x2000;
394
395         typelib->typelib_segment_block_length[segment] = block_size;
396         typelib->typelib_segment_data[segment] = xmalloc(block_size);
397         if (!typelib->typelib_segment_data[segment]) return -1;
398         memset(typelib->typelib_segment_data[segment], 0x57, block_size);
399     }
400
401     while ((typelib->typelib_segdir[segment].length + size) > typelib->typelib_segment_block_length[segment]) {
402         char *block;
403
404         block_size = typelib->typelib_segment_block_length[segment];
405         block = xrealloc(typelib->typelib_segment_data[segment], block_size << 1);
406
407         if (segment == MSFT_SEG_TYPEINFO) {
408             /* TypeInfos have a direct pointer to their memory space, so we have to fix them up. */
409             msft_typeinfo_t *typeinfo;
410
411             for (typeinfo = typelib->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
412                 typeinfo->typeinfo = (void *)&block[((char *)typeinfo->typeinfo) - typelib->typelib_segment_data[segment]];
413             }
414         }
415
416         memset(block + block_size, 0x57, block_size);
417         typelib->typelib_segment_block_length[segment] = block_size << 1;
418         typelib->typelib_segment_data[segment] = block;
419     }
420
421     offset = typelib->typelib_segdir[segment].length;
422     typelib->typelib_segdir[segment].length += size;
423
424     return offset;
425 }
426
427 /****************************************************************************
428  *      ctl2_alloc_typeinfo
429  *
430  *  Allocates and initializes a typeinfo structure in a type library.
431  *
432  * RETURNS
433  *
434  *  Success: The offset of the new typeinfo.
435  *  Failure: -1 (this is invariably an out of memory condition).
436  */
437 static int ctl2_alloc_typeinfo(
438         msft_typelib_t *typelib,   /* [I] The type library to allocate in. */
439         int nameoffset)            /* [I] The offset of the name for this typeinfo. */
440 {
441     int offset;
442     MSFT_TypeInfoBase *typeinfo;
443
444     offset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEINFO, sizeof(MSFT_TypeInfoBase), 0);
445
446     typelib->typelib_typeinfo_offsets[typelib->typelib_header.nrtypeinfos++] = offset;
447
448     typeinfo = (void *)(typelib->typelib_segment_data[MSFT_SEG_TYPEINFO] + offset);
449
450     typeinfo->typekind = (typelib->typelib_header.nrtypeinfos - 1) << 16;
451     typeinfo->memoffset = -1; /* should be EOF if no elements */
452     typeinfo->res2 = 0;
453     typeinfo->res3 = -1;
454     typeinfo->res4 = 3;
455     typeinfo->res5 = 0;
456     typeinfo->cElement = 0;
457     typeinfo->res7 = 0;
458     typeinfo->res8 = 0;
459     typeinfo->res9 = 0;
460     typeinfo->resA = 0;
461     typeinfo->posguid = -1;
462     typeinfo->flags = 0;
463     typeinfo->NameOffset = nameoffset;
464     typeinfo->version = 0;
465     typeinfo->docstringoffs = -1;
466     typeinfo->helpstringcontext = 0;
467     typeinfo->helpcontext = 0;
468     typeinfo->oCustData = -1;
469     typeinfo->cbSizeVft = 0;
470     typeinfo->cImplTypes = 0;
471     typeinfo->size = 0;
472     typeinfo->datatype1 = -1;
473     typeinfo->datatype2 = 0;
474     typeinfo->res18 = 0;
475     typeinfo->res19 = -1;
476
477     return offset;
478 }
479
480 /****************************************************************************
481  *      ctl2_alloc_guid
482  *
483  *  Allocates and initializes a GUID structure in a type library. Also updates
484  *  the GUID hash table as needed.
485  *
486  * RETURNS
487  *
488  *  Success: The offset of the new GUID.
489  */
490 static int ctl2_alloc_guid(
491         msft_typelib_t *typelib,   /* [I] The type library to allocate in. */
492         MSFT_GuidEntry *guid)      /* [I] The GUID to store. */
493 {
494     int offset;
495     MSFT_GuidEntry *guid_space;
496     int hash_key;
497
498     hash_key = ctl2_hash_guid(&guid->guid);
499
500     offset = ctl2_find_guid(typelib, hash_key, &guid->guid);
501     if (offset != -1) return offset;
502
503     offset = ctl2_alloc_segment(typelib, MSFT_SEG_GUID, sizeof(MSFT_GuidEntry), 0);
504
505     guid_space = (void *)(typelib->typelib_segment_data[MSFT_SEG_GUID] + offset);
506     *guid_space = *guid;
507
508     guid_space->next_hash = typelib->typelib_guidhash_segment[hash_key];
509     typelib->typelib_guidhash_segment[hash_key] = offset;
510
511     return offset;
512 }
513
514 /****************************************************************************
515  *      ctl2_alloc_name
516  *
517  *  Allocates and initializes a name within a type library. Also updates the
518  *  name hash table as needed.
519  *
520  * RETURNS
521  *
522  *  Success: The offset within the segment of the new name.
523  *  Failure: -1 (this is invariably an out of memory condition).
524  */
525 static int ctl2_alloc_name(
526         msft_typelib_t *typelib,  /* [I] The type library to allocate in. */
527         const char *name)         /* [I] The name to store. */
528 {
529     int length;
530     int offset;
531     MSFT_NameIntro *name_space;
532     char *encoded_name;
533
534     length = ctl2_encode_name(typelib, name, &encoded_name);
535
536     offset = ctl2_find_name(typelib, encoded_name);
537     if (offset != -1) return offset;
538
539     offset = ctl2_alloc_segment(typelib, MSFT_SEG_NAME, length + 8, 0);
540
541     name_space = (void *)(typelib->typelib_segment_data[MSFT_SEG_NAME] + offset);
542     name_space->hreftype = -1;
543     name_space->next_hash = -1;
544     memcpy(&name_space->namelen, encoded_name, length);
545
546     if (typelib->typelib_namehash_segment[encoded_name[2] & 0x7f] != -1)
547         name_space->next_hash = typelib->typelib_namehash_segment[encoded_name[2] & 0x7f];
548
549     typelib->typelib_namehash_segment[encoded_name[2] & 0x7f] = offset;
550
551     typelib->typelib_header.nametablecount += 1;
552     typelib->typelib_header.nametablechars += *encoded_name;
553
554     return offset;
555 }
556
557 /****************************************************************************
558  *      ctl2_alloc_string
559  *
560  *  Allocates and initializes a string in a type library.
561  *
562  * RETURNS
563  *
564  *  Success: The offset within the segment of the new string.
565  *  Failure: -1 (this is invariably an out of memory condition).
566  */
567 static int ctl2_alloc_string(
568         msft_typelib_t *typelib,  /* [I] The type library to allocate in. */
569         const char *string)       /* [I] The string to store. */
570 {
571     int length;
572     int offset;
573     char *string_space;
574     char *encoded_string;
575
576     length = ctl2_encode_string(string, &encoded_string);
577
578     for (offset = 0; offset < typelib->typelib_segdir[MSFT_SEG_STRING].length;
579          offset += ((((typelib->typelib_segment_data[MSFT_SEG_STRING][offset + 1] << 8) & 0xff)
580              | (typelib->typelib_segment_data[MSFT_SEG_STRING][offset + 0] & 0xff)) + 5) & ~3) {
581         if (!memcmp(encoded_string, typelib->typelib_segment_data[MSFT_SEG_STRING] + offset, length)) return offset;
582     }
583
584     offset = ctl2_alloc_segment(typelib, MSFT_SEG_STRING, length, 0);
585
586     string_space = typelib->typelib_segment_data[MSFT_SEG_STRING] + offset;
587     memcpy(string_space, encoded_string, length);
588
589     return offset;
590 }
591
592 /****************************************************************************
593  *      alloc_msft_importinfo
594  *
595  *  Allocates and initializes an import information structure in a type library.
596  *
597  * RETURNS
598  *
599  *  Success: The offset of the new importinfo.
600  *  Failure: -1 (this is invariably an out of memory condition).
601  */
602 static int alloc_msft_importinfo(
603         msft_typelib_t *typelib,   /* [I] The type library to allocate in. */
604         MSFT_ImpInfo *impinfo)     /* [I] The import information to store. */
605 {
606     int offset;
607     MSFT_ImpInfo *impinfo_space;
608
609     for (offset = 0;
610          offset < typelib->typelib_segdir[MSFT_SEG_IMPORTINFO].length;
611          offset += sizeof(MSFT_ImpInfo)) {
612         if (!memcmp(&(typelib->typelib_segment_data[MSFT_SEG_IMPORTINFO][offset]),
613                     impinfo, sizeof(MSFT_ImpInfo))) {
614             return offset;
615         }
616     }
617
618     impinfo->flags |= typelib->typelib_header.nimpinfos++;
619
620     offset = ctl2_alloc_segment(typelib, MSFT_SEG_IMPORTINFO, sizeof(MSFT_ImpInfo), 0);
621
622     impinfo_space = (void *)(typelib->typelib_segment_data[MSFT_SEG_IMPORTINFO] + offset);
623     *impinfo_space = *impinfo;
624
625     return offset;
626 }
627
628 /****************************************************************************
629  *      alloc_importfile
630  *
631  *  Allocates and initializes an import file definition in a type library.
632  *
633  * RETURNS
634  *
635  *  Success: The offset of the new importinfo.
636  *  Failure: -1 (this is invariably an out of memory condition).
637  */
638 static int alloc_importfile(
639         msft_typelib_t *typelib,   /* [I] The type library to allocate in. */
640         int guidoffset,            /* [I] The offset to the GUID for the imported library. */
641         int major_version,         /* [I] The major version number of the imported library. */
642         int minor_version,         /* [I] The minor version number of the imported library. */
643         const char *filename)      /* [I] The filename of the imported library. */
644 {
645     int length;
646     int offset;
647     MSFT_ImpFile *importfile;
648     char *encoded_string;
649
650     length = ctl2_encode_string(filename, &encoded_string);
651
652     encoded_string[0] <<= 2;
653     encoded_string[0] |= 1;
654
655     for (offset = 0; offset < typelib->typelib_segdir[MSFT_SEG_IMPORTFILES].length;
656          offset += ((((typelib->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset + 0xd] << 8) & 0xff)
657              | (typelib->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset + 0xc] & 0xff)) >> 2) + 0xc) {
658         if (!memcmp(encoded_string, typelib->typelib_segment_data[MSFT_SEG_IMPORTFILES] + offset + 0xc, length)) return offset;
659     }
660
661     offset = ctl2_alloc_segment(typelib, MSFT_SEG_IMPORTFILES, length + 0xc, 0);
662
663     importfile = (MSFT_ImpFile *)&typelib->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset];
664     importfile->guid = guidoffset;
665     importfile->lcid = typelib->typelib_header.lcid2;
666     importfile->version = major_version | (minor_version << 16);
667     memcpy(&importfile->filename, encoded_string, length);
668
669     return offset;
670 }
671
672 static void alloc_importinfo(msft_typelib_t *typelib, importinfo_t *importinfo)
673 {
674     importlib_t *importlib = importinfo->importlib;
675
676     chat("alloc_importinfo: %s\n", importinfo->name);
677
678     if(!importlib->allocated) {
679         MSFT_GuidEntry guid;
680         int guid_idx;
681
682         chat("allocating importlib %s\n", importlib->name);
683
684         importlib->allocated = -1;
685
686         memcpy(&guid.guid, &importlib->guid, sizeof(GUID));
687         guid.hreftype = 2;
688
689         guid_idx = ctl2_alloc_guid(typelib, &guid);
690
691         alloc_importfile(typelib, guid_idx, importlib->version&0xffff,
692                          importlib->version>>16, importlib->name);
693     }
694
695     if(importinfo->offset == -1 || !(importinfo->flags & MSFT_IMPINFO_OFFSET_IS_GUID)) {
696         MSFT_ImpInfo impinfo;
697
698         impinfo.flags = importinfo->flags;
699         impinfo.oImpFile = 0;
700
701         if(importinfo->flags & MSFT_IMPINFO_OFFSET_IS_GUID) {
702             MSFT_GuidEntry guid;
703
704             guid.hreftype = 0;
705             memcpy(&guid.guid, &importinfo->guid, sizeof(GUID));
706
707             impinfo.oGuid = ctl2_alloc_guid(typelib, &guid);
708
709             importinfo->offset = alloc_msft_importinfo(typelib, &impinfo);
710
711             typelib->typelib_segment_data[MSFT_SEG_GUID][impinfo.oGuid+sizeof(GUID)]
712                 = importinfo->offset+1;
713
714             if(!strcmp(importinfo->name, "IDispatch"))
715                 typelib->typelib_header.dispatchpos = importinfo->offset+1;
716         }else {
717             impinfo.oGuid = importinfo->id;
718             importinfo->offset = alloc_msft_importinfo(typelib, &impinfo);
719         }
720     }
721 }
722
723 static importinfo_t *find_importinfo(msft_typelib_t *typelib, const char *name)
724 {
725     importlib_t *importlib;
726     int i;
727
728     chat("search importlib %s\n", name);
729
730     if(!name)
731         return NULL;
732
733     LIST_FOR_EACH_ENTRY( importlib, &typelib->typelib->importlibs, importlib_t, entry )
734     {
735         for(i=0; i < importlib->ntypeinfos; i++) {
736             if(!strcmp(name, importlib->importinfos[i].name)) {
737                 chat("Found %s in importlib.\n", name);
738                 return importlib->importinfos+i;
739             }
740         }
741     }
742
743     return NULL;
744 }
745
746 static void add_structure_typeinfo(msft_typelib_t *typelib, type_t *structure);
747 static void add_interface_typeinfo(msft_typelib_t *typelib, type_t *interface);
748 static void add_enum_typeinfo(msft_typelib_t *typelib, type_t *enumeration);
749 static void add_coclass_typeinfo(msft_typelib_t *typelib, type_t *cls);
750 static void add_dispinterface_typeinfo(msft_typelib_t *typelib, type_t *dispinterface);
751
752
753 /****************************************************************************
754  *      encode_type
755  *
756  *  Encodes a type, storing information in the TYPEDESC and ARRAYDESC
757  *  segments as needed.
758  *
759  * RETURNS
760  *
761  *  Success: 0.
762  *  Failure: -1.
763  */
764 static int encode_type(
765         msft_typelib_t *typelib,   /* [I] The type library in which to encode the TYPEDESC. */
766         int vt,                    /* [I] vt to encode */
767         type_t *type,              /* [I] type */
768         int *encoded_type,         /* [O] The encoded type description. */
769         int *width,                /* [O] The width of the type, or NULL. */
770         int *alignment,            /* [O] The alignment of the type, or NULL. */
771         int *decoded_size)         /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
772 {
773     int default_type;
774     int scratch;
775     int typeoffset;
776     int *typedata;
777     int target_type;
778     int child_size = 0;
779
780     chat("encode_type vt %d type %p\n", vt, type);
781
782     default_type = 0x80000000 | (vt << 16) | vt;
783     if (!width) width = &scratch;
784     if (!alignment) alignment = &scratch;
785     if (!decoded_size) decoded_size = &scratch;
786
787
788     switch (vt) {
789     case VT_I1:
790     case VT_UI1:
791         *encoded_type = default_type;
792         *width = 1;
793         *alignment = 1;
794         break;
795
796     case VT_INT:
797         *encoded_type = 0x80000000 | (VT_I4 << 16) | VT_INT;
798         if ((typelib->typelib_header.varflags & 0x0f) == SYS_WIN16) {
799             *width = 2;
800             *alignment = 2;
801         } else {
802             *width = 4;
803             *alignment = 4;
804         }
805         break;
806
807     case VT_UINT:
808         *encoded_type = 0x80000000 | (VT_UI4 << 16) | VT_UINT;
809         if ((typelib->typelib_header.varflags & 0x0f) == SYS_WIN16) {
810             *width = 2;
811             *alignment = 2;
812         } else {
813             *width = 4;
814             *alignment = 4;
815         }
816         break;
817
818     case VT_UI2:
819     case VT_I2:
820     case VT_BOOL:
821         *encoded_type = default_type;
822         *width = 2;
823         *alignment = 2;
824         break;
825
826     case VT_I4:
827     case VT_UI4:
828     case VT_R4:
829     case VT_ERROR:
830     case VT_BSTR:
831     case VT_HRESULT:
832         *encoded_type = default_type;
833         *width = 4;
834         *alignment = 4;
835         break;
836
837     case VT_R8:
838     case VT_I8:
839     case VT_UI8:
840         *encoded_type = default_type;
841         *width = 8;
842         *alignment = 8;
843         break;
844
845     case VT_CY:
846     case VT_DATE:
847         *encoded_type = default_type;
848         *width = 8;
849         *alignment = 8;
850         break;
851
852     case VT_VOID:
853         *encoded_type = 0x80000000 | (VT_EMPTY << 16) | vt;
854         *width = 0;
855         *alignment = 1;
856         break;
857
858     case VT_UNKNOWN:
859     case VT_DISPATCH:
860         *encoded_type = default_type;
861         *width = 4;
862         *alignment = 4;
863         break;
864
865     case VT_VARIANT:
866         *encoded_type = default_type;
867         break;
868
869     case VT_LPSTR:
870     case VT_LPWSTR:
871         *encoded_type = 0xfffe0000 | vt;
872         *width = 4;
873         *alignment = 4;
874         break;
875
876     case VT_PTR:
877       {
878         int next_vt;
879         for(next_vt = 0; is_ptr(type); type = type_pointer_get_ref(type)) {
880             next_vt = get_type_vt(type_pointer_get_ref(type));
881             if (next_vt != 0)
882                 break;
883         }
884         /* if no type found then it must be void */
885         if (next_vt == 0)
886             next_vt = VT_VOID;
887
888         encode_type(typelib, next_vt, type_pointer_get_ref(type),
889                     &target_type, NULL, NULL, &child_size);
890         /* these types already have an implicit pointer, so we don't need to
891          * add another */
892         if(next_vt == VT_DISPATCH || next_vt == VT_UNKNOWN) {
893             chat("encode_type: skipping ptr\n");
894             *encoded_type = target_type;
895             *width = 4;
896             *alignment = 4;
897             *decoded_size = child_size;
898             break;
899         }
900
901         for (typeoffset = 0; typeoffset < typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
902             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
903             if (((typedata[0] & 0xffff) == VT_PTR) && (typedata[1] == target_type)) break;
904         }
905
906         if (typeoffset == typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
907             int mix_field;
908             
909             if (target_type & 0x80000000) {
910                 mix_field = ((target_type >> 16) & 0x3fff) | VT_BYREF;
911             } else {
912                 typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][target_type];
913                 mix_field = ((typedata[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
914             }
915
916             typeoffset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEDESC, 8, 0);
917             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
918
919             typedata[0] = (mix_field << 16) | VT_PTR;
920             typedata[1] = target_type;
921         }
922
923         *encoded_type = typeoffset;
924
925         *width = 4;
926         *alignment = 4;
927         *decoded_size = 8 /*sizeof(TYPEDESC)*/ + child_size;
928         break;
929     }
930
931
932     case VT_SAFEARRAY:
933         {
934         type_t *element_type = type_alias_get_aliasee(type_array_get_element(type));
935         int next_vt = get_type_vt(element_type);
936
937         encode_type(typelib, next_vt, type_alias_get_aliasee(type_array_get_element(type)), &target_type, NULL, NULL, &child_size);
938
939         for (typeoffset = 0; typeoffset < typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
940             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
941             if (((typedata[0] & 0xffff) == VT_SAFEARRAY) && (typedata[1] == target_type)) break;
942         }
943
944         if (typeoffset == typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
945             int mix_field;
946             
947             if (target_type & 0x80000000) {
948                 mix_field = ((target_type >> 16) & VT_TYPEMASK) | VT_ARRAY;
949             } else {
950                 typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][target_type];
951                 mix_field = ((typedata[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
952             }
953
954             typeoffset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEDESC, 8, 0);
955             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
956
957             typedata[0] = (mix_field << 16) | VT_SAFEARRAY;
958             typedata[1] = target_type;
959         }
960
961         *encoded_type = typeoffset;
962
963         *width = 4;
964         *alignment = 4;
965         *decoded_size = 8 /*sizeof(TYPEDESC)*/ + child_size;
966         break;
967         }
968
969
970     case VT_USERDEFINED:
971       {
972         int typeinfo_offset;
973
974         /* typedef'd types without public attribute aren't included in the typelib */
975         while (type->typelib_idx < 0 && type_is_alias(type) && !is_attr(type->attrs, ATTR_PUBLIC))
976           type = type_alias_get_aliasee(type);
977
978         chat("encode_type: VT_USERDEFINED - type %p name = %s real type %d idx %d\n", type,
979              type->name, type_get_type(type), type->typelib_idx);
980
981         if(type->typelib_idx == -1) {
982             chat("encode_type: trying to ref not added type\n");
983             switch (type_get_type(type)) {
984             case TYPE_STRUCT:
985                 add_structure_typeinfo(typelib, type);
986                 break;
987             case TYPE_INTERFACE:
988                 add_interface_typeinfo(typelib, type);
989                 break;
990             case TYPE_ENUM:
991                 add_enum_typeinfo(typelib, type);
992                 break;
993             case TYPE_COCLASS:
994                 add_coclass_typeinfo(typelib, type);
995                 break;
996             default:
997                 error("encode_type: VT_USERDEFINED - unhandled type %d\n",
998                       type_get_type(type));
999             }
1000         }
1001
1002         typeinfo_offset = typelib->typelib_typeinfo_offsets[type->typelib_idx];
1003         for (typeoffset = 0; typeoffset < typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
1004             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1005             if ((typedata[0] == ((0x7fff << 16) | VT_USERDEFINED)) && (typedata[1] == typeinfo_offset)) break;
1006         }
1007
1008         if (typeoffset == typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
1009             typeoffset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEDESC, 8, 0);
1010             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1011
1012             typedata[0] = (0x7fff << 16) | VT_USERDEFINED;
1013             typedata[1] = typeinfo_offset;
1014         }
1015
1016         *encoded_type = typeoffset;
1017         *width = 0;
1018         *alignment = 1;
1019         break;
1020       }
1021
1022     default:
1023         error("encode_type: unrecognized type %d.\n", vt);
1024         *encoded_type = default_type;
1025         *width = 0;
1026         *alignment = 1;
1027         break;
1028     }
1029
1030     return 0;
1031 }
1032
1033 static void dump_type(type_t *t)
1034 {
1035     chat("dump_type: %p name %s type %d attrs %p\n", t, t->name, type_get_type(t), t->attrs);
1036 }
1037
1038 static int encode_var(
1039         msft_typelib_t *typelib,   /* [I] The type library in which to encode the TYPEDESC. */
1040         type_t *type,              /* [I] The type description to encode. */
1041         var_t *var,                /* [I] The var to encode. */
1042         int *encoded_type,         /* [O] The encoded type description. */
1043         int *width,                /* [O] The width of the type, or NULL. */
1044         int *alignment,            /* [O] The alignment of the type, or NULL. */
1045         int *decoded_size)         /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
1046 {
1047     int typeoffset;
1048     int *typedata;
1049     int target_type;
1050     int child_size;
1051     int vt;
1052     int scratch;
1053
1054     if (!width) width = &scratch;
1055     if (!alignment) alignment = &scratch;
1056     if (!decoded_size) decoded_size = &scratch;
1057     *decoded_size = 0;
1058
1059     chat("encode_var: var %p type %p type->name %s\n",
1060          var, type, type->name ? type->name : "NULL");
1061
1062     if (is_array(type) && !type_array_is_decl_as_ptr(type)) {
1063         int num_dims, elements = 1, arrayoffset;
1064         type_t *atype;
1065         int *arraydata;
1066
1067         num_dims = 0;
1068         for (atype = type;
1069              is_array(atype) && !type_array_is_decl_as_ptr(atype);
1070              atype = type_array_get_element(atype))
1071             ++num_dims;
1072
1073         chat("array with %d dimensions\n", num_dims);
1074         encode_var(typelib, atype, var, &target_type, width, alignment, NULL);
1075         arrayoffset = ctl2_alloc_segment(typelib, MSFT_SEG_ARRAYDESC, (2 + 2 * num_dims) * sizeof(int), 0);
1076         arraydata = (void *)&typelib->typelib_segment_data[MSFT_SEG_ARRAYDESC][arrayoffset];
1077
1078         arraydata[0] = target_type;
1079         arraydata[1] = num_dims;
1080         arraydata[1] |= ((num_dims * 2 * sizeof(int)) << 16);
1081
1082         arraydata += 2;
1083         for (atype = type;
1084              is_array(atype) && !type_array_is_decl_as_ptr(atype);
1085              atype = type_array_get_element(atype))
1086         {
1087             arraydata[0] = type_array_get_dim(atype);
1088             arraydata[1] = 0;
1089             arraydata += 2;
1090             elements *= type_array_get_dim(atype);
1091         }
1092
1093         typeoffset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEDESC, 8, 0);
1094         typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1095
1096         typedata[0] = (0x7ffe << 16) | VT_CARRAY;
1097         typedata[1] = arrayoffset;
1098
1099         *encoded_type = typeoffset;
1100         *width = *width * elements;
1101         *decoded_size = 20 /*sizeof(ARRAYDESC)*/ + (num_dims - 1) * 8 /*sizeof(SAFEARRAYBOUND)*/;
1102         return 0;
1103     }
1104
1105     vt = get_type_vt(type);
1106     if (vt == VT_PTR) {
1107         type_t *ref = is_ptr(type) ?
1108             type_pointer_get_ref(type) : type_array_get_element(type);
1109         int skip_ptr = encode_var(typelib, ref, var,
1110                                   &target_type, NULL, NULL, &child_size);
1111
1112         if(skip_ptr == 2) {
1113             chat("encode_var: skipping ptr\n");
1114             *encoded_type = target_type;
1115             *decoded_size = child_size;
1116             *width = 4;
1117             *alignment = 4;
1118             return 0;
1119         }
1120
1121         for (typeoffset = 0; typeoffset < typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
1122             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1123             if (((typedata[0] & 0xffff) == VT_PTR) && (typedata[1] == target_type)) break;
1124         }
1125
1126         if (typeoffset == typelib->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
1127             int mix_field;
1128             
1129             if (target_type & 0x80000000) {
1130                 mix_field = ((target_type >> 16) & 0x3fff) | VT_BYREF;
1131             } else {
1132                 typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][target_type];
1133                 mix_field = ((typedata[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
1134             }
1135
1136             typeoffset = ctl2_alloc_segment(typelib, MSFT_SEG_TYPEDESC, 8, 0);
1137             typedata = (void *)&typelib->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1138
1139             typedata[0] = (mix_field << 16) | VT_PTR;
1140             typedata[1] = target_type;
1141         }
1142
1143         *encoded_type = typeoffset;
1144
1145         *width = 4;
1146         *alignment = 4;
1147         *decoded_size = 8 /*sizeof(TYPEDESC)*/ + child_size;
1148         return 0;
1149     }
1150
1151     dump_type(type);
1152
1153     encode_type(typelib, vt, type, encoded_type, width, alignment, decoded_size);
1154     /* these types already have an implicit pointer, so we don't need to
1155      * add another */
1156     if(vt == VT_DISPATCH || vt == VT_UNKNOWN) return 2;
1157     return 0;
1158 }
1159
1160 static unsigned long get_ulong_val(unsigned long val, int vt)
1161 {
1162     switch(vt) {
1163     case VT_I2:
1164     case VT_BOOL:
1165     case VT_UI2:
1166         return val & 0xffff;
1167     case VT_I1:
1168     case VT_UI1:
1169         return val & 0xff;
1170     }
1171
1172     return val;
1173 }
1174
1175 static void write_value(msft_typelib_t* typelib, int *out, int vt, const void *value)
1176 {
1177     switch(vt) {
1178     case VT_I2:
1179     case VT_I4:
1180     case VT_R4:
1181     case VT_BOOL:
1182     case VT_I1:
1183     case VT_UI1:
1184     case VT_UI2:
1185     case VT_UI4:
1186     case VT_INT:
1187     case VT_UINT:
1188     case VT_HRESULT:
1189     case VT_PTR:
1190       {
1191         const unsigned long lv = get_ulong_val(*(const unsigned long*)value, vt);
1192         if((lv & 0x3ffffff) == lv) {
1193             *out = 0x80000000;
1194             *out |= vt << 26;
1195             *out |= lv;
1196         } else {
1197             int offset = ctl2_alloc_segment(typelib, MSFT_SEG_CUSTDATA, 8, 0);
1198             *((unsigned short *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset]) = vt;
1199             memcpy(&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+2], value, 4);
1200             *((unsigned short *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+6]) = 0x5757;
1201             *out = offset;
1202         }
1203         return;
1204       }
1205     case VT_BSTR:
1206       {
1207         const char *s = (const char *) value;
1208         int len = strlen(s), seg_len = (len + 6 + 3) & ~0x3;
1209         int offset = ctl2_alloc_segment(typelib, MSFT_SEG_CUSTDATA, seg_len, 0);
1210         *((unsigned short *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset]) = vt;
1211         *((unsigned int *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+2]) = len;        
1212         memcpy(&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+6], value, len);
1213         len += 6;
1214         while(len < seg_len) {
1215             *((char *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+len]) = 0x57;
1216             len++;
1217         }
1218         *out = offset;
1219         return;
1220       }
1221
1222     default:
1223         warning("can't write value of type %d yet\n", vt);
1224     }
1225     return;
1226 }
1227
1228 static HRESULT set_custdata(msft_typelib_t *typelib, REFGUID guid,
1229                             int vt, void *value, int *offset)
1230 {
1231     MSFT_GuidEntry guidentry;
1232     int guidoffset;
1233     int custoffset;
1234     int *custdata;
1235     int data_out;
1236
1237     guidentry.guid = *guid;
1238
1239     guidentry.hreftype = -1;
1240     guidentry.next_hash = -1;
1241
1242     guidoffset = ctl2_alloc_guid(typelib, &guidentry);
1243     write_value(typelib, &data_out, vt, value);
1244
1245     custoffset = ctl2_alloc_segment(typelib, MSFT_SEG_CUSTDATAGUID, 12, 0);
1246
1247     custdata = (int *)&typelib->typelib_segment_data[MSFT_SEG_CUSTDATAGUID][custoffset];
1248     custdata[0] = guidoffset;
1249     custdata[1] = data_out;
1250     custdata[2] = *offset;
1251     *offset = custoffset;
1252
1253     return S_OK;
1254 }
1255
1256 static HRESULT add_func_desc(msft_typeinfo_t* typeinfo, var_t *func, int index)
1257 {
1258     int offset, name_offset;
1259     int *typedata, typedata_size;
1260     int i, id, next_idx;
1261     int decoded_size, extra_attr = 0;
1262     int num_params = 0, num_optional = 0, num_defaults = 0;
1263     var_t *arg;
1264     char *namedata;
1265     const attr_t *attr;
1266     unsigned int funcflags = 0, callconv = 4 /* CC_STDCALL */;
1267     unsigned int funckind, invokekind = 1 /* INVOKE_FUNC */;
1268     int help_context = 0, help_string_context = 0, help_string_offset = -1;
1269     int entry = -1, entry_is_ord = 0;
1270
1271     chat("add_func_desc(%p,%d)\n", typeinfo, index);
1272
1273     id = ((0x6000 | (typeinfo->typeinfo->datatype2 & 0xffff)) << 16) | index;
1274
1275     switch(typeinfo->typekind) {
1276     case TKIND_DISPATCH:
1277         funckind = 0x4; /* FUNC_DISPATCH */
1278         break;
1279     case TKIND_MODULE:
1280         funckind = 0x3; /* FUNC_STATIC */
1281         break;
1282     default:
1283         funckind = 0x1; /* FUNC_PUREVIRTUAL */
1284         break;
1285     }
1286
1287     if (is_local( func->attrs )) {
1288         chat("add_func_desc: skipping local function\n");
1289         return S_FALSE;
1290     }
1291
1292     if (type_get_function_args(func->type))
1293       LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), var_t, entry )
1294       {
1295         num_params++;
1296         if (arg->attrs) LIST_FOR_EACH_ENTRY( attr, arg->attrs, const attr_t, entry ) {
1297             if(attr->type == ATTR_DEFAULTVALUE)
1298                 num_defaults++;
1299             else if(attr->type == ATTR_OPTIONAL)
1300                 num_optional++;
1301         }
1302       }
1303
1304     chat("add_func_desc: num of params %d\n", num_params);
1305
1306     name_offset = ctl2_alloc_name(typeinfo->typelib, func->name);
1307
1308     if (func->attrs) LIST_FOR_EACH_ENTRY( attr, func->attrs, const attr_t, entry ) {
1309         expr_t *expr = attr->u.pval;
1310         switch(attr->type) {
1311         case ATTR_BINDABLE:
1312             funcflags |= 0x4; /* FUNCFLAG_FBINDABLE */
1313             break;
1314         /* FIXME: FUNCFLAG_FDEFAULTBIND */
1315         case ATTR_DEFAULTCOLLELEM:
1316             funcflags |= 0x100; /* FUNCFLAG_FDEFAULTCOLLELEM */
1317             break;
1318         case ATTR_DISPLAYBIND:
1319             funcflags |= 0x10; /* FUNCFLAG_FDISPLAYBIND */
1320             break;
1321         case ATTR_ENTRY:
1322             extra_attr = max(extra_attr, 3);
1323             if (expr->type == EXPR_STRLIT || expr->type == EXPR_WSTRLIT)
1324               entry = ctl2_alloc_string(typeinfo->typelib, attr->u.pval);
1325             else {
1326               entry = expr->cval;
1327               entry_is_ord = 1;
1328             }
1329             break;
1330         case ATTR_HELPCONTEXT:
1331             extra_attr = max(extra_attr, 1);
1332             help_context = expr->u.lval;
1333             break;
1334         case ATTR_HELPSTRING:
1335             extra_attr = max(extra_attr, 2);
1336             help_string_offset = ctl2_alloc_string(typeinfo->typelib, attr->u.pval);
1337             break;
1338         case ATTR_HELPSTRINGCONTEXT:
1339             extra_attr = max(extra_attr, 6);
1340             help_string_context = expr->u.lval;
1341             break;
1342         case ATTR_HIDDEN:
1343             funcflags |= 0x40; /* FUNCFLAG_FHIDDEN */
1344             break;
1345         case ATTR_ID:
1346             id = expr->cval;
1347             break;
1348         case ATTR_IMMEDIATEBIND:
1349             funcflags |= 0x1000; /* FUNCFLAG_FIMMEDIATEBIND */
1350             break;
1351         case ATTR_NONBROWSABLE:
1352             funcflags |= 0x400; /* FUNCFLAG_FNONBROWSABLE */
1353             break;
1354         case ATTR_OUT:
1355             break;
1356         case ATTR_PROPGET:
1357             invokekind = 0x2; /* INVOKE_PROPERTYGET */
1358             break;
1359         case ATTR_PROPPUT:
1360             invokekind = 0x4; /* INVOKE_PROPERTYPUT */
1361             break;
1362         case ATTR_PROPPUTREF:
1363             invokekind = 0x8; /* INVOKE_PROPERTYPUTREF */
1364             break;
1365         /* FIXME: FUNCFLAG_FREPLACEABLE */
1366         case ATTR_REQUESTEDIT:
1367             funcflags |= 0x8; /* FUNCFLAG_FREQUESTEDIT */
1368             break;
1369         case ATTR_RESTRICTED:
1370             funcflags |= 0x1; /* FUNCFLAG_FRESTRICTED */
1371             break;
1372         case ATTR_SOURCE:
1373             funcflags |= 0x2; /* FUNCFLAG_FSOURCE */
1374             break;
1375         /* FIXME: FUNCFLAG_FUIDEFAULT */
1376         /* FIXME: FUNCFLAG_FUSESGETLASTERROR */
1377         case ATTR_VARARG:
1378             if (num_optional || num_defaults)
1379                 warning("add_func_desc: ignoring vararg in function with optional or defaultvalue params\n");
1380             else
1381                 num_optional = -1;
1382             break;
1383         default:
1384             break;
1385         }
1386     }
1387
1388     /* allocate type data space for us */
1389     typedata_size = 0x18 + extra_attr * sizeof(int) + (num_params * (num_defaults ? 16 : 12));
1390
1391     if (!typeinfo->func_data) {
1392         typeinfo->func_data = xmalloc(0x100);
1393         typeinfo->func_data_allocated = 0x100;
1394         typeinfo->func_data[0] = 0;
1395     }
1396
1397     if(typeinfo->func_data[0] + typedata_size + sizeof(int) > typeinfo->func_data_allocated) {
1398         typeinfo->func_data_allocated = max(typeinfo->func_data_allocated * 2,
1399                                             typeinfo->func_data[0] + typedata_size + sizeof(int));
1400         typeinfo->func_data = xrealloc(typeinfo->func_data, typeinfo->func_data_allocated);
1401     }
1402
1403     offset = typeinfo->func_data[0];
1404     typeinfo->func_data[0] += typedata_size;
1405     typedata = typeinfo->func_data + (offset >> 2) + 1;
1406
1407
1408     /* find func with the same name - if it exists use its id */
1409     for(i = 0; i < (typeinfo->typeinfo->cElement & 0xffff); i++) {
1410         if(name_offset == typeinfo->func_names[i]) {
1411             id = typeinfo->func_indices[i];
1412             break;
1413         }
1414     }
1415
1416     /* find the first func with the same id and link via the hiword of typedata[4] */
1417     next_idx = index;
1418     for(i = 0; i < (typeinfo->typeinfo->cElement & 0xffff); i++) {
1419         if(id == typeinfo->func_indices[i]) {
1420             next_idx = typeinfo->func_data[(typeinfo->func_offsets[i] >> 2) + 1 + 4] >> 16;
1421             typeinfo->func_data[(typeinfo->func_offsets[i] >> 2) + 1 + 4] &= 0xffff;
1422             typeinfo->func_data[(typeinfo->func_offsets[i] >> 2) + 1 + 4] |= (index << 16);
1423             break;
1424         }
1425     }
1426
1427     /* fill out the basic type information */
1428     typedata[0] = typedata_size | (index << 16);
1429     encode_var(typeinfo->typelib, type_function_get_rettype(func->type), func, &typedata[1], NULL, NULL, &decoded_size);
1430     typedata[2] = funcflags;
1431     typedata[3] = ((52 /*sizeof(FUNCDESC)*/ + decoded_size) << 16) | typeinfo->typeinfo->cbSizeVft;
1432     typedata[4] = (next_idx << 16) | (callconv << 8) | (invokekind << 3) | funckind;
1433     if(num_defaults) typedata[4] |= 0x1000;
1434     if(entry_is_ord) typedata[4] |= 0x2000;
1435     typedata[5] = (num_optional << 16) | num_params;
1436
1437     /* NOTE: High word of typedata[3] is total size of FUNCDESC + size of all ELEMDESCs for params + TYPEDESCs for pointer params and return types. */
1438     /* That is, total memory allocation required to reconstitute the FUNCDESC in its entirety. */
1439     typedata[3] += (16 /*sizeof(ELEMDESC)*/ * num_params) << 16;
1440     typedata[3] += (24 /*sizeof(PARAMDESCEX)*/ * num_defaults) << 16;
1441
1442     switch(extra_attr) {
1443     case 6: typedata[11] = help_string_context;
1444     case 5: typedata[10] = -1;
1445     case 4: typedata[9] = -1;
1446     case 3: typedata[8] = entry;
1447     case 2: typedata[7] = help_string_offset;
1448     case 1: typedata[6] = help_context;
1449     case 0:
1450         break;
1451     default:
1452         warning("unknown number of optional attrs\n");
1453     }
1454
1455     if (type_get_function_args(func->type))
1456     {
1457       i = 0;
1458       LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), var_t, entry )
1459       {
1460         int paramflags = 0;
1461         int *paramdata = typedata + 6 + extra_attr + (num_defaults ? num_params : 0) + i * 3;
1462         int *defaultdata = num_defaults ? typedata + 6 + extra_attr + i : NULL;
1463
1464         if(defaultdata) *defaultdata = -1;
1465
1466         encode_var(typeinfo->typelib, arg->type, arg, paramdata, NULL, NULL, &decoded_size);
1467         if (arg->attrs) LIST_FOR_EACH_ENTRY( attr, arg->attrs, const attr_t, entry ) {
1468             switch(attr->type) {
1469             case ATTR_DEFAULTVALUE:
1470               {
1471                 int vt;
1472                 expr_t *expr = (expr_t *)attr->u.pval;
1473                 if (type_get_type(arg->type) == TYPE_ENUM)
1474                     vt = VT_INT;
1475                 else
1476                     vt = get_type_vt(arg->type);
1477                 paramflags |= 0x30; /* PARAMFLAG_FHASDEFAULT | PARAMFLAG_FOPT */
1478                 if (expr->type == EXPR_STRLIT || expr->type == EXPR_WSTRLIT)
1479                 {
1480                   if (vt != VT_BSTR) error("string default value applied to non-string type\n");
1481                   chat("default value '%s'\n", expr->u.sval);
1482                   write_value(typeinfo->typelib, defaultdata, vt, expr->u.sval);
1483                 }
1484                 else
1485                 {
1486                   chat("default value %ld\n", expr->cval);
1487                   write_value(typeinfo->typelib, defaultdata, vt, &expr->cval);
1488                 }
1489                 break;
1490               }
1491             case ATTR_IN:
1492                 paramflags |= 0x01; /* PARAMFLAG_FIN */
1493                 break;
1494             case ATTR_OPTIONAL:
1495                 paramflags |= 0x10; /* PARAMFLAG_FOPT */
1496                 break;
1497             case ATTR_OUT:
1498                 paramflags |= 0x02; /* PARAMFLAG_FOUT */
1499                 break;
1500             case ATTR_RETVAL:
1501                 paramflags |= 0x08; /* PARAMFLAG_FRETVAL */
1502                 typedata[4] |= 0x4000;
1503                 break;
1504             default:
1505                 chat("unhandled param attr %d\n", attr->type);
1506                 break;
1507             }
1508         }
1509         paramdata[1] = -1;
1510         paramdata[2] = paramflags;
1511         typedata[3] += decoded_size << 16;
1512         i++;
1513       }
1514     }
1515
1516     if(typeinfo->funcs_allocated == 0) {
1517         typeinfo->funcs_allocated = 10;
1518         typeinfo->func_indices = xmalloc(typeinfo->funcs_allocated * sizeof(int));
1519         typeinfo->func_names   = xmalloc(typeinfo->funcs_allocated * sizeof(int));
1520         typeinfo->func_offsets = xmalloc(typeinfo->funcs_allocated * sizeof(int));
1521     }
1522     if(typeinfo->funcs_allocated == (typeinfo->typeinfo->cElement & 0xffff)) {
1523         typeinfo->funcs_allocated *= 2;
1524         typeinfo->func_indices = xrealloc(typeinfo->func_indices, typeinfo->funcs_allocated * sizeof(int));
1525         typeinfo->func_names   = xrealloc(typeinfo->func_names,   typeinfo->funcs_allocated * sizeof(int));
1526         typeinfo->func_offsets = xrealloc(typeinfo->func_offsets, typeinfo->funcs_allocated * sizeof(int));
1527     }
1528
1529     /* update the index data */
1530     typeinfo->func_indices[typeinfo->typeinfo->cElement & 0xffff] = id; 
1531     typeinfo->func_offsets[typeinfo->typeinfo->cElement & 0xffff] = offset;
1532     typeinfo->func_names[typeinfo->typeinfo->cElement & 0xffff] = name_offset;
1533
1534     /* ??? */
1535     if (!typeinfo->typeinfo->res2) typeinfo->typeinfo->res2 = 0x20;
1536     typeinfo->typeinfo->res2 <<= 1;
1537     /* ??? */
1538     if (index < 2) typeinfo->typeinfo->res2 += num_params << 4;
1539
1540     if (typeinfo->typeinfo->res3 == -1) typeinfo->typeinfo->res3 = 0;
1541     typeinfo->typeinfo->res3 += 0x38 + num_params * 0x10;
1542     if(num_defaults) typeinfo->typeinfo->res3 += num_params * 0x4;
1543
1544     /* adjust size of VTBL */
1545     if(funckind != 0x3 /* FUNC_STATIC */)
1546         typeinfo->typeinfo->cbSizeVft += 4;
1547
1548     /* Increment the number of function elements */
1549     typeinfo->typeinfo->cElement += 1;
1550
1551     namedata = typeinfo->typelib->typelib_segment_data[MSFT_SEG_NAME] + name_offset;
1552     if (*((INT *)namedata) == -1) {
1553         *((INT *)namedata) = typeinfo->typelib->typelib_typeinfo_offsets[typeinfo->typeinfo->typekind >> 16];
1554         if(typeinfo->typekind == TKIND_MODULE)
1555             namedata[9] |= 0x10;
1556     } else
1557         namedata[9] &= ~0x10;
1558
1559     if(typeinfo->typekind == TKIND_MODULE)
1560         namedata[9] |= 0x20;
1561
1562     if (type_get_function_args(func->type))
1563     {
1564         i = 0;
1565         LIST_FOR_EACH_ENTRY( arg, type_get_function_args(func->type), var_t, entry )
1566         {
1567             /* don't give the last arg of a [propput*] func a name */
1568             if(i != num_params - 1 || (invokekind != 0x4 /* INVOKE_PROPERTYPUT */ && invokekind != 0x8 /* INVOKE_PROPERTYPUTREF */))
1569             {
1570                 int *paramdata = typedata + 6 + extra_attr + (num_defaults ? num_params : 0) + i * 3;
1571                 offset = ctl2_alloc_name(typeinfo->typelib, arg->name);
1572                 paramdata[1] = offset;
1573             }
1574             i++;
1575         }
1576     }
1577     return S_OK;
1578 }
1579
1580 static HRESULT add_var_desc(msft_typeinfo_t *typeinfo, UINT index, var_t* var)
1581 {
1582     int offset, id;
1583     unsigned int typedata_size;
1584     INT *typedata;
1585     int var_datawidth;
1586     int var_alignment;
1587     int var_type_size, var_kind = 0 /* VAR_PERINSTANCE */; 
1588     int alignment;
1589     int varflags = 0;
1590     const attr_t *attr;
1591     char *namedata;
1592     int var_num = (typeinfo->typeinfo->cElement >> 16) & 0xffff;
1593
1594     chat("add_var_desc(%d, %s)\n", index, var->name);
1595
1596     id = 0x40000000 + index;
1597
1598     if (var->attrs) LIST_FOR_EACH_ENTRY( attr, var->attrs, const attr_t, entry ) {
1599         expr_t *expr = attr->u.pval;
1600         switch(attr->type) {
1601         case ATTR_BINDABLE:
1602             varflags |= 0x04; /* VARFLAG_FBINDABLE */
1603             break;
1604         /* FIXME: VARFLAG_FDEFAULTBIND */
1605         case ATTR_DEFAULTCOLLELEM:
1606             varflags |= 0x100; /* VARFLAG_FDEFAULTCOLLELEM */
1607             break;
1608         case ATTR_DISPLAYBIND:
1609             varflags |= 0x10; /* VARFLAG_FDISPLAYBIND */
1610             break;
1611         case ATTR_HIDDEN:
1612             varflags |= 0x40; /* VARFLAG_FHIDDEN */
1613             break;
1614         case ATTR_ID:
1615             id = expr->cval;
1616             break;
1617         case ATTR_IMMEDIATEBIND:
1618             varflags |= 0x1000; /* VARFLAG_FIMMEDIATEBIND */
1619             break;
1620         case ATTR_NONBROWSABLE:
1621             varflags |= 0x400; /* VARFLAG_FNONBROWSABLE */
1622             break;
1623         case ATTR_READONLY:
1624             varflags |= 0x01; /* VARFLAG_FREADONLY */
1625             break;
1626         /* FIXME: VARFLAG_FREPLACEABLE */
1627         case ATTR_REQUESTEDIT:
1628             varflags |= 0x08; /* VARFLAG_FREQUESTEDIT */
1629             break;
1630         case ATTR_RESTRICTED:
1631             varflags |= 0x80; /* VARFLAG_FRESTRICTED */
1632             break;
1633         case ATTR_SOURCE:
1634             varflags |= 0x02; /* VARFLAG_FSOURCE */
1635             break;
1636         /* FIXME: VARFLAG_FUIDEFAULT */
1637         default:
1638             break;
1639         }
1640     }
1641
1642     /* allocate type data space for us */
1643     typedata_size = 0x14;
1644
1645     if (!typeinfo->var_data) {
1646         typeinfo->var_data = xmalloc(0x100);
1647         typeinfo->var_data_allocated = 0x100;
1648         typeinfo->var_data[0] = 0;
1649     }
1650
1651     if(typeinfo->var_data[0] + typedata_size + sizeof(int) > typeinfo->var_data_allocated) {
1652         typeinfo->var_data_allocated = max(typeinfo->var_data_allocated * 2,
1653                                             typeinfo->var_data[0] + typedata_size + sizeof(int));
1654         typeinfo->var_data = xrealloc(typeinfo->var_data, typeinfo->var_data_allocated);
1655     }
1656
1657     offset = typeinfo->var_data[0];
1658     typeinfo->var_data[0] += typedata_size;
1659     typedata = typeinfo->var_data + (offset >> 2) + 1;
1660
1661     /* fill out the basic type information */
1662     typedata[0] = typedata_size | (index << 16);
1663     typedata[2] = varflags;
1664     typedata[3] = (36 /*sizeof(VARDESC)*/ << 16) | 0;
1665
1666     if(typeinfo->vars_allocated == 0) {
1667         typeinfo->vars_allocated = 10;
1668         typeinfo->var_indices = xmalloc(typeinfo->vars_allocated * sizeof(int));
1669         typeinfo->var_names   = xmalloc(typeinfo->vars_allocated * sizeof(int));
1670         typeinfo->var_offsets = xmalloc(typeinfo->vars_allocated * sizeof(int));
1671     }
1672     if(typeinfo->vars_allocated == var_num) {
1673         typeinfo->vars_allocated *= 2;
1674         typeinfo->var_indices = xrealloc(typeinfo->var_indices, typeinfo->vars_allocated * sizeof(int));
1675         typeinfo->var_names   = xrealloc(typeinfo->var_names,   typeinfo->vars_allocated * sizeof(int));
1676         typeinfo->var_offsets = xrealloc(typeinfo->var_offsets, typeinfo->vars_allocated * sizeof(int));
1677     }
1678     /* update the index data */
1679     typeinfo->var_indices[var_num] = id;
1680     typeinfo->var_names[var_num] = -1;
1681     typeinfo->var_offsets[var_num] = offset;
1682
1683     /* figure out type widths and whatnot */
1684     encode_var(typeinfo->typelib, var->type, var, &typedata[1], &var_datawidth,
1685                &var_alignment, &var_type_size);
1686
1687     /* pad out starting position to data width */
1688     typeinfo->datawidth += var_alignment - 1;
1689     typeinfo->datawidth &= ~(var_alignment - 1);
1690
1691     switch(typeinfo->typekind) {
1692     case TKIND_ENUM:
1693         write_value(typeinfo->typelib, &typedata[4], VT_I4, &var->eval->cval);
1694         var_kind = 2; /* VAR_CONST */
1695         var_type_size += 16; /* sizeof(VARIANT) */
1696         typeinfo->datawidth = var_datawidth;
1697         break;
1698     case TKIND_RECORD:
1699         typedata[4] = typeinfo->datawidth;
1700         typeinfo->datawidth += var_datawidth;
1701         break;
1702     case TKIND_DISPATCH:
1703         var_kind = 3; /* VAR_DISPATCH */
1704         typeinfo->datawidth = 4;
1705         var_alignment = 4;
1706         break;
1707     default:
1708         error("add_var_desc: unhandled type kind %d\n", typeinfo->typekind);
1709         break;
1710     }
1711
1712     /* add type description size to total required allocation */
1713     typedata[3] += var_type_size << 16 | var_kind;
1714
1715     /* fix type alignment */
1716     alignment = (typeinfo->typeinfo->typekind >> 11) & 0x1f;
1717     if (alignment < var_alignment) {
1718         alignment = var_alignment;
1719         typeinfo->typeinfo->typekind &= ~0xffc0;
1720         typeinfo->typeinfo->typekind |= alignment << 11 | alignment << 6;
1721     }
1722
1723     /* ??? */
1724     if (!typeinfo->typeinfo->res2) typeinfo->typeinfo->res2 = 0x1a;
1725     if ((index == 0) || (index == 1) || (index == 2) || (index == 4) || (index == 9)) {
1726         typeinfo->typeinfo->res2 <<= 1;
1727     }
1728
1729     /* ??? */
1730     if (typeinfo->typeinfo->res3 == -1) typeinfo->typeinfo->res3 = 0;
1731     typeinfo->typeinfo->res3 += 0x2c;
1732
1733     /* increment the number of variable elements */
1734     typeinfo->typeinfo->cElement += 0x10000;
1735
1736     /* pad data width to alignment */
1737     typeinfo->typeinfo->size = (typeinfo->datawidth + (alignment - 1)) & ~(alignment - 1);
1738
1739     offset = ctl2_alloc_name(typeinfo->typelib, var->name);
1740     if (offset == -1) return E_OUTOFMEMORY;
1741
1742     namedata = typeinfo->typelib->typelib_segment_data[MSFT_SEG_NAME] + offset;
1743     if (*((INT *)namedata) == -1) {
1744         *((INT *)namedata) = typeinfo->typelib->typelib_typeinfo_offsets[typeinfo->typeinfo->typekind >> 16];
1745         if(typeinfo->typekind != TKIND_DISPATCH)
1746             namedata[9] |= 0x10;
1747     } else
1748         namedata[9] &= ~0x10;
1749
1750     if (typeinfo->typekind == TKIND_ENUM) {
1751         namedata[9] |= 0x20;
1752     }
1753     typeinfo->var_names[var_num] = offset;
1754
1755     return S_OK;
1756 }
1757
1758 static HRESULT add_impl_type(msft_typeinfo_t *typeinfo, type_t *ref, importinfo_t *importinfo)
1759 {
1760     if(importinfo) {
1761         alloc_importinfo(typeinfo->typelib, importinfo);
1762         typeinfo->typeinfo->datatype1 = importinfo->offset+1;
1763     }else {
1764         if(ref->typelib_idx == -1)
1765             add_interface_typeinfo(typeinfo->typelib, ref);
1766         if(ref->typelib_idx == -1)
1767             error("add_impl_type: unable to add inherited interface\n");
1768
1769         typeinfo->typeinfo->datatype1 = typeinfo->typelib->typelib_typeinfo_offsets[ref->typelib_idx];
1770     }
1771
1772     typeinfo->typeinfo->cImplTypes++;
1773     return S_OK;
1774 }
1775
1776 static msft_typeinfo_t *create_msft_typeinfo(msft_typelib_t *typelib, enum type_kind kind,
1777                                              const char *name, const attr_list_t *attrs)
1778 {
1779     const attr_t *attr;
1780     msft_typeinfo_t *msft_typeinfo;
1781     int nameoffset;
1782     int typeinfo_offset;
1783     MSFT_TypeInfoBase *typeinfo;
1784     MSFT_GuidEntry guidentry;
1785
1786     chat("create_msft_typeinfo: name %s kind %d\n", name, kind);
1787
1788     msft_typeinfo = xmalloc(sizeof(*msft_typeinfo));
1789     memset( msft_typeinfo, 0, sizeof(*msft_typeinfo) );
1790
1791     msft_typeinfo->typelib = typelib;
1792
1793     nameoffset = ctl2_alloc_name(typelib, name);
1794     typeinfo_offset = ctl2_alloc_typeinfo(typelib, nameoffset);
1795     typeinfo = (MSFT_TypeInfoBase *)&typelib->typelib_segment_data[MSFT_SEG_TYPEINFO][typeinfo_offset];
1796
1797     typelib->typelib_segment_data[MSFT_SEG_NAME][nameoffset + 9] = 0x38;
1798     *((int *)&typelib->typelib_segment_data[MSFT_SEG_NAME][nameoffset]) = typeinfo_offset;
1799
1800     msft_typeinfo->typekind = kind;
1801     msft_typeinfo->typeinfo = typeinfo;
1802
1803     typeinfo->typekind |= kind | 0x20;
1804
1805     if(kind == TKIND_COCLASS)
1806         typeinfo->flags |= 0x2; /* TYPEFLAG_FCANCREATE */
1807
1808     if (attrs) LIST_FOR_EACH_ENTRY( attr, attrs, const attr_t, entry ) {
1809         switch(attr->type) {
1810         case ATTR_AGGREGATABLE:
1811             if (kind == TKIND_COCLASS)
1812                 typeinfo->flags |= 0x400; /* TYPEFLAG_FAGGREGATABLE */
1813             break;
1814
1815         case ATTR_APPOBJECT:
1816             if (kind == TKIND_COCLASS)
1817                 typeinfo->flags |= 0x1; /* TYPEFLAG_FAPPOBJECT */
1818             break;
1819
1820         case ATTR_CONTROL:
1821             if (kind == TKIND_COCLASS)
1822                 typeinfo->flags |= 0x20; /* TYPEFLAG_FCONTROL */
1823             break;
1824
1825         case ATTR_DLLNAME:
1826           {
1827             int offset = ctl2_alloc_string(typelib, attr->u.pval);
1828             typeinfo->datatype1 = offset;
1829             break;
1830           }
1831
1832         case ATTR_DUAL:
1833             /* FIXME: check interface is compatible */
1834             typeinfo->typekind = (typeinfo->typekind & ~0xff) | 0x34;
1835             typeinfo->flags |= 0x140; /* TYPEFLAG_FDUAL | TYPEFLAG_FOLEAUTOMATION */
1836             break;
1837
1838         case ATTR_HELPCONTEXT:
1839           {
1840             expr_t *expr = (expr_t*)attr->u.pval;
1841             typeinfo->helpcontext = expr->cval;
1842             break;
1843           }
1844         case ATTR_HELPSTRING:
1845           {
1846             int offset = ctl2_alloc_string(typelib, attr->u.pval);
1847             if (offset == -1) break;
1848             typeinfo->docstringoffs = offset;
1849             break;
1850           }
1851         case ATTR_HELPSTRINGCONTEXT:
1852           {
1853             expr_t *expr = (expr_t*)attr->u.pval;
1854             typeinfo->helpstringcontext = expr->cval;
1855             break;
1856           }
1857         case ATTR_HIDDEN:
1858             typeinfo->flags |= 0x10; /* TYPEFLAG_FHIDDEN */
1859             break;
1860
1861         /* FIXME: TYPEFLAG_FLICENSED */
1862
1863         case ATTR_NONCREATABLE:
1864             typeinfo->flags &= ~0x2; /* TYPEFLAG_FCANCREATE */
1865             break;
1866
1867         case ATTR_NONEXTENSIBLE:
1868             typeinfo->flags |= 0x80; /* TYPEFLAG_FNONEXTENSIBLE */
1869             break;
1870
1871         case ATTR_OLEAUTOMATION:
1872             typeinfo->flags |= 0x100; /* TYPEFLAG_FOLEAUTOMATION */
1873             break;
1874
1875         /* FIXME: TYPEFLAG_FPREDCLID */
1876
1877         /* FIXME: TYPEFLAG_FPROXY */
1878
1879         /* FIXME: TYPEFLAG_FREPLACEABLE */
1880
1881         case ATTR_RESTRICTED:
1882             typeinfo->flags |= 0x200; /* TYPEFLAG_FRESTRICTED */
1883             break;
1884
1885         case ATTR_UUID:
1886             guidentry.guid = *(GUID*)attr->u.pval;
1887             guidentry.hreftype = typelib->typelib_typeinfo_offsets[typeinfo->typekind >> 16];
1888             guidentry.next_hash = -1;
1889             typeinfo->posguid = ctl2_alloc_guid(typelib, &guidentry);
1890 #if 0
1891             if (IsEqualIID(guid, &IID_IDispatch)) {
1892                 typelib->typelib_header.dispatchpos = typelib->typelib_typeinfo_offsets[typeinfo->typekind >> 16];
1893             }
1894 #endif
1895             break;
1896
1897         case ATTR_VERSION:
1898             typeinfo->version = attr->u.ival;
1899             break;
1900
1901         default:
1902             break;
1903         }
1904     }
1905
1906     if (typelib->last_typeinfo) typelib->last_typeinfo->next_typeinfo = msft_typeinfo;
1907     typelib->last_typeinfo = msft_typeinfo;
1908     if (!typelib->typeinfos) typelib->typeinfos = msft_typeinfo;
1909
1910
1911     return msft_typeinfo;
1912 }
1913
1914 static void add_dispatch(msft_typelib_t *typelib)
1915 {
1916     int guid_offset, impfile_offset;
1917     MSFT_GuidEntry guidentry;
1918     MSFT_ImpInfo impinfo;
1919     GUID stdole =        {0x00020430,0x0000,0x0000,{0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46}};
1920     GUID iid_idispatch = {0x00020400,0x0000,0x0000,{0xc0,0x00,0x00,0x00,0x00,0x00,0x00,0x46}};
1921
1922     if(typelib->typelib_header.dispatchpos != -1) return;
1923
1924     guidentry.guid = stdole;
1925     guidentry.hreftype = 2;
1926     guidentry.next_hash = -1;
1927     guid_offset = ctl2_alloc_guid(typelib, &guidentry);
1928     impfile_offset = alloc_importfile(typelib, guid_offset, 2, 0, "stdole2.tlb");
1929
1930     guidentry.guid = iid_idispatch;
1931     guidentry.hreftype = 1;
1932     guidentry.next_hash = -1;
1933     impinfo.flags = TKIND_INTERFACE << 24 | MSFT_IMPINFO_OFFSET_IS_GUID;
1934     impinfo.oImpFile = impfile_offset;
1935     impinfo.oGuid = ctl2_alloc_guid(typelib, &guidentry);
1936     typelib->typelib_header.dispatchpos = alloc_msft_importinfo(typelib, &impinfo) | 0x01;
1937 }
1938
1939 static void add_dispinterface_typeinfo(msft_typelib_t *typelib, type_t *dispinterface)
1940 {
1941     int idx = 0;
1942     const func_t *func;
1943     var_t *var;
1944     msft_typeinfo_t *msft_typeinfo;
1945
1946     if (-1 < dispinterface->typelib_idx)
1947         return;
1948
1949     dispinterface->typelib_idx = typelib->typelib_header.nrtypeinfos;
1950     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_DISPATCH, dispinterface->name,
1951                                          dispinterface->attrs);
1952
1953     msft_typeinfo->typeinfo->size = 4;
1954     msft_typeinfo->typeinfo->typekind |= 0x2100;
1955
1956     msft_typeinfo->typeinfo->flags |= 0x1000; /* TYPEFLAG_FDISPATCHABLE */
1957     add_dispatch(typelib);
1958     msft_typeinfo->typeinfo->cImplTypes = 1;
1959
1960     /* count the no of methods, as the variable indices come after the funcs */
1961     if (dispinterface->details.iface->disp_methods)
1962         LIST_FOR_EACH_ENTRY( func, dispinterface->details.iface->disp_methods, const func_t, entry )
1963             idx++;
1964
1965     if (type_dispiface_get_props(dispinterface))
1966         LIST_FOR_EACH_ENTRY( var, type_dispiface_get_props(dispinterface), var_t, entry )
1967             add_var_desc(msft_typeinfo, idx++, var);
1968
1969     if (type_dispiface_get_methods(dispinterface))
1970     {
1971         idx = 0;
1972         LIST_FOR_EACH_ENTRY( func, type_dispiface_get_methods(dispinterface), const func_t, entry )
1973             if(add_func_desc(msft_typeinfo, func->def, idx) == S_OK)
1974                 idx++;
1975     }
1976 }
1977
1978 static void add_interface_typeinfo(msft_typelib_t *typelib, type_t *interface)
1979 {
1980     int idx = 0;
1981     const statement_t *stmt_func;
1982     type_t *ref;
1983     msft_typeinfo_t *msft_typeinfo;
1984     importinfo_t *ref_importinfo = NULL;
1985     int num_parents = 0, num_funcs = 0;
1986     type_t *inherit;
1987     const type_t *derived;
1988
1989     if (-1 < interface->typelib_idx)
1990         return;
1991
1992     if (is_attr(interface->attrs, ATTR_DISPINTERFACE))
1993         return add_dispinterface_typeinfo(typelib, interface);
1994
1995     /* midl adds the parent interface first, unless the parent itself
1996        has no parent (i.e. it stops before IUnknown). */
1997
1998     inherit = type_iface_get_inherit(interface);
1999
2000     if(inherit) {
2001         ref_importinfo = find_importinfo(typelib, inherit->name);
2002
2003         if(!ref_importinfo && type_iface_get_inherit(inherit) &&
2004            inherit->typelib_idx == -1)
2005             add_interface_typeinfo(typelib, inherit);
2006     }
2007
2008     interface->typelib_idx = typelib->typelib_header.nrtypeinfos;
2009     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_INTERFACE, interface->name, interface->attrs);
2010     msft_typeinfo->typeinfo->size = 4;
2011     msft_typeinfo->typeinfo->typekind |= 0x2200;
2012
2013     for (derived = inherit; derived; derived = type_iface_get_inherit(derived))
2014         if (derived->name && !strcmp(derived->name, "IDispatch"))
2015             msft_typeinfo->typeinfo->flags |= 0x1000; /* TYPEFLAG_FDISPATCHABLE */
2016
2017     /* can't be dual if it doesn't derive from IDispatch */
2018     if (!(msft_typeinfo->typeinfo->flags & 0x1000)) /* TYPEFLAG_FDISPATCHABLE */
2019         msft_typeinfo->typeinfo->flags &= ~0x40; /* TYPEFLAG_FDUAL */
2020
2021     if(type_iface_get_inherit(interface))
2022         add_impl_type(msft_typeinfo, type_iface_get_inherit(interface),
2023                       ref_importinfo);
2024
2025     /* count the number of inherited interfaces and non-local functions */
2026     for(ref = inherit; ref; ref = type_iface_get_inherit(ref)) {
2027         num_parents++;
2028         STATEMENTS_FOR_EACH_FUNC( stmt_func, type_iface_get_stmts(ref) ) {
2029             var_t *func = stmt_func->u.var;
2030             if (!is_local(func->attrs)) num_funcs++;
2031         }
2032     }
2033     msft_typeinfo->typeinfo->datatype2 = num_funcs << 16 | num_parents;
2034     msft_typeinfo->typeinfo->cbSizeVft = num_funcs * 4;
2035
2036     STATEMENTS_FOR_EACH_FUNC( stmt_func, type_iface_get_stmts(interface) ) {
2037         var_t *func = stmt_func->u.var;
2038         if(add_func_desc(msft_typeinfo, func, idx) == S_OK)
2039             idx++;
2040     }
2041 }
2042
2043 static void add_structure_typeinfo(msft_typelib_t *typelib, type_t *structure)
2044 {
2045     int idx = 0;
2046     var_t *cur;
2047     msft_typeinfo_t *msft_typeinfo;
2048
2049     if (-1 < structure->typelib_idx)
2050         return;
2051
2052     structure->typelib_idx = typelib->typelib_header.nrtypeinfos;
2053     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_RECORD, structure->name, structure->attrs);
2054     msft_typeinfo->typeinfo->size = 0;
2055
2056     if (type_struct_get_fields(structure))
2057         LIST_FOR_EACH_ENTRY( cur, type_struct_get_fields(structure), var_t, entry )
2058             add_var_desc(msft_typeinfo, idx++, cur);
2059 }
2060
2061 static void add_enum_typeinfo(msft_typelib_t *typelib, type_t *enumeration)
2062 {
2063     int idx = 0;
2064     var_t *cur;
2065     msft_typeinfo_t *msft_typeinfo;
2066
2067     enumeration->typelib_idx = typelib->typelib_header.nrtypeinfos;
2068     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_ENUM, enumeration->name, enumeration->attrs);
2069     msft_typeinfo->typeinfo->size = 0;
2070
2071     if (type_enum_get_values(enumeration))
2072         LIST_FOR_EACH_ENTRY( cur, type_enum_get_values(enumeration), var_t, entry )
2073             add_var_desc(msft_typeinfo, idx++, cur);
2074 }
2075
2076 static void add_typedef_typeinfo(msft_typelib_t *typelib, type_t *tdef)
2077 {
2078     msft_typeinfo_t *msft_typeinfo;
2079     int alignment;
2080
2081     if (-1 < tdef->typelib_idx)
2082         return;
2083
2084     tdef->typelib_idx = typelib->typelib_header.nrtypeinfos;
2085     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_ALIAS, tdef->name, tdef->attrs);
2086     encode_type(typelib, get_type_vt(type_alias_get_aliasee(tdef)),
2087                 type_alias_get_aliasee(tdef),
2088                 &msft_typeinfo->typeinfo->datatype1,
2089                 &msft_typeinfo->typeinfo->size,
2090                 &alignment, &msft_typeinfo->typeinfo->datatype2);
2091     msft_typeinfo->typeinfo->typekind |= (alignment << 11 | alignment << 6);
2092 }
2093
2094 static void add_coclass_typeinfo(msft_typelib_t *typelib, type_t *cls)
2095 {
2096     msft_typeinfo_t *msft_typeinfo;
2097     ifref_t *iref;
2098     int num_ifaces = 0, offset, i;
2099     MSFT_RefRecord *ref, *first = NULL, *first_source = NULL;
2100     int have_default = 0, have_default_source = 0;
2101     const attr_t *attr;
2102     ifref_list_t *ifaces;
2103
2104     if (-1 < cls->typelib_idx)
2105         return;
2106
2107     cls->typelib_idx = typelib->typelib_header.nrtypeinfos;
2108     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_COCLASS, cls->name, cls->attrs);
2109
2110     ifaces = type_coclass_get_ifaces(cls);
2111     if (ifaces) LIST_FOR_EACH_ENTRY( iref, ifaces, ifref_t, entry ) num_ifaces++;
2112
2113     offset = msft_typeinfo->typeinfo->datatype1 = ctl2_alloc_segment(typelib, MSFT_SEG_REFERENCES,
2114                                                                      num_ifaces * sizeof(*ref), 0);
2115
2116     i = 0;
2117     if (ifaces) LIST_FOR_EACH_ENTRY( iref, ifaces, ifref_t, entry ) {
2118         if(iref->iface->typelib_idx == -1)
2119             add_interface_typeinfo(typelib, iref->iface);
2120         ref = (MSFT_RefRecord*) (typelib->typelib_segment_data[MSFT_SEG_REFERENCES] + offset + i * sizeof(*ref));
2121         ref->reftype = typelib->typelib_typeinfo_offsets[iref->iface->typelib_idx];
2122         ref->flags = 0;
2123         ref->oCustData = -1;
2124         ref->onext = -1;
2125         if(i < num_ifaces - 1)
2126             ref->onext = offset + (i + 1) * sizeof(*ref);
2127
2128         if (iref->attrs) LIST_FOR_EACH_ENTRY( attr, iref->attrs, const attr_t, entry ) {
2129             switch(attr->type) {
2130             case ATTR_DEFAULT:
2131                 ref->flags |= 0x1; /* IMPLTYPEFLAG_FDEFAULT */
2132                 break;
2133             case ATTR_DEFAULTVTABLE:
2134                 ref->flags |= 0x8; /* IMPLTYPEFLAG_FDEFAULTVTABLE */
2135                 break;
2136             case ATTR_RESTRICTED:
2137                 ref->flags |= 0x4; /* IMPLTYPEFLAG_FRESTRICTED */
2138                 break;
2139             case ATTR_SOURCE:
2140                 ref->flags |= 0x2; /* IMPLTYPEFLAG_FSOURCE */
2141                 break;
2142             default:
2143                 warning("add_coclass_typeinfo: unhandled attr %d\n", attr->type);
2144             }
2145         }
2146         if(ref->flags & 0x1) { /* IMPLTYPEFLAG_FDEFAULT */
2147             if(ref->flags & 0x2) /* IMPLTYPEFLAG_SOURCE */
2148                 have_default_source = 1;
2149             else
2150                 have_default = 1;
2151         }
2152
2153         /* If the interface is non-restricted and we haven't already had one then
2154            remember it so that we can use it as a default later */
2155         if((ref->flags & 0x4) == 0) { /* IMPLTYPEFLAG_FRESTRICTED */
2156             if(ref->flags & 0x2) { /* IMPLTYPEFLAG_FSOURCE */
2157                 if(!first_source)
2158                     first_source = ref;
2159             }
2160             else if(!first)
2161                 first = ref;
2162         }
2163         i++;
2164     }
2165
2166     /* If we haven't had a default interface, then set the default flags on the
2167        first ones */
2168     if(!have_default && first)
2169         first->flags |= 0x1;
2170     if(!have_default_source && first_source)
2171         first_source->flags |= 0x1;
2172
2173     msft_typeinfo->typeinfo->cImplTypes = num_ifaces;
2174     msft_typeinfo->typeinfo->size = 4;
2175     msft_typeinfo->typeinfo->typekind |= 0x2200;
2176 }
2177
2178 static void add_module_typeinfo(msft_typelib_t *typelib, type_t *module)
2179 {
2180     int idx = 0;
2181     const statement_t *stmt;
2182     msft_typeinfo_t *msft_typeinfo;
2183
2184     if (-1 < module->typelib_idx)
2185         return;
2186
2187     module->typelib_idx = typelib->typelib_header.nrtypeinfos;
2188     msft_typeinfo = create_msft_typeinfo(typelib, TKIND_MODULE, module->name, module->attrs);
2189     msft_typeinfo->typeinfo->typekind |= 0x0a00;
2190
2191     STATEMENTS_FOR_EACH_FUNC( stmt, module->details.module->stmts ) {
2192         var_t *func = stmt->u.var;
2193         if(add_func_desc(msft_typeinfo, func, idx) == S_OK)
2194             idx++;
2195     }
2196
2197     msft_typeinfo->typeinfo->size = idx;
2198 }
2199
2200 static void add_type_typeinfo(msft_typelib_t *typelib, type_t *type)
2201 {
2202     switch (type_get_type(type)) {
2203     case TYPE_INTERFACE:
2204         add_interface_typeinfo(typelib, type);
2205         break;
2206     case TYPE_STRUCT:
2207         add_structure_typeinfo(typelib, type);
2208         break;
2209     case TYPE_ENUM:
2210         add_enum_typeinfo(typelib, type);
2211         break;
2212     case TYPE_COCLASS:
2213         add_coclass_typeinfo(typelib, type);
2214         break;
2215     case TYPE_BASIC:
2216     case TYPE_POINTER:
2217         break;
2218     default:
2219         error("add_entry: unhandled type 0x%x for %s\n",
2220               type_get_type(type), type->name);
2221         break;
2222     }
2223 }
2224
2225 static void add_entry(msft_typelib_t *typelib, const statement_t *stmt)
2226 {
2227     switch(stmt->type) {
2228     case STMT_LIBRARY:
2229     case STMT_IMPORT:
2230     case STMT_CPPQUOTE:
2231     case STMT_DECLARATION:
2232         /* not included in typelib */
2233         break;
2234     case STMT_IMPORTLIB:
2235         /* not processed here */
2236         break;
2237     case STMT_TYPEDEF:
2238     {
2239         const type_list_t *type_entry = stmt->u.type_list;
2240         for (; type_entry; type_entry = type_entry->next) {
2241             /* if the type is public then add the typedef, otherwise attempt
2242              * to add the aliased type */
2243             if (is_attr(type_entry->type->attrs, ATTR_PUBLIC))
2244                 add_typedef_typeinfo(typelib, type_entry->type);
2245             else
2246                 add_type_typeinfo(typelib, type_alias_get_aliasee(type_entry->type));
2247         }
2248         break;
2249     }
2250     case STMT_MODULE:
2251         add_module_typeinfo(typelib, stmt->u.type);
2252         break;
2253     case STMT_TYPE:
2254     case STMT_TYPEREF:
2255     {
2256         type_t *type = stmt->u.type;
2257         add_type_typeinfo(typelib, type);
2258         break;
2259     }
2260     }
2261 }
2262
2263 static void set_name(msft_typelib_t *typelib)
2264 {
2265     int offset;
2266
2267     offset = ctl2_alloc_name(typelib, typelib->typelib->name);
2268     if (offset == -1) return;
2269     typelib->typelib_header.NameOffset = offset;
2270     return;
2271 }
2272
2273 static void set_version(msft_typelib_t *typelib)
2274 {
2275     typelib->typelib_header.version = get_attrv( typelib->typelib->attrs, ATTR_VERSION );
2276 }
2277
2278 static void set_guid(msft_typelib_t *typelib)
2279 {
2280     MSFT_GuidEntry guidentry;
2281     int offset;
2282     void *ptr;
2283     GUID guid = {0,0,0,{0,0,0,0,0,0}};
2284
2285     guidentry.guid = guid;
2286     guidentry.hreftype = -2;
2287     guidentry.next_hash = -1;
2288
2289     ptr = get_attrp( typelib->typelib->attrs, ATTR_UUID );
2290     if (ptr) guidentry.guid = *(GUID *)ptr;
2291
2292     offset = ctl2_alloc_guid(typelib, &guidentry);
2293     typelib->typelib_header.posguid = offset;
2294
2295     return;
2296 }
2297
2298 static void set_doc_string(msft_typelib_t *typelib)
2299 {
2300     char *str = get_attrp( typelib->typelib->attrs, ATTR_HELPSTRING );
2301
2302     if (str)
2303     {
2304         int offset = ctl2_alloc_string(typelib, str);
2305         if (offset != -1) typelib->typelib_header.helpstring = offset;
2306     }
2307 }
2308
2309 static void set_help_file_name(msft_typelib_t *typelib)
2310 {
2311     char *str = get_attrp( typelib->typelib->attrs, ATTR_HELPFILE );
2312
2313     if (str)
2314     {
2315         int offset = ctl2_alloc_string(typelib, str);
2316         if (offset != -1)
2317         {
2318             typelib->typelib_header.helpfile = offset;
2319             typelib->typelib_header.varflags |= 0x10;
2320         }
2321     }
2322 }
2323
2324 static void set_help_context(msft_typelib_t *typelib)
2325 {
2326     const expr_t *expr = get_attrp( typelib->typelib->attrs, ATTR_HELPCONTEXT );
2327     if (expr) typelib->typelib_header.helpcontext = expr->cval;
2328 }
2329
2330 static void set_help_string_dll(msft_typelib_t *typelib)
2331 {
2332     char *str = get_attrp( typelib->typelib->attrs, ATTR_HELPSTRINGDLL );
2333
2334     if (str)
2335     {
2336         int offset = ctl2_alloc_string(typelib, str);
2337         if (offset != -1)
2338         {
2339             typelib->help_string_dll_offset = offset;
2340             typelib->typelib_header.varflags |= 0x100;
2341         }
2342     }
2343 }
2344
2345 static void set_help_string_context(msft_typelib_t *typelib)
2346 {
2347     const expr_t *expr = get_attrp( typelib->typelib->attrs, ATTR_HELPSTRINGCONTEXT );
2348     if (expr) typelib->typelib_header.helpstringcontext = expr->cval;
2349 }
2350
2351 static void set_lcid(msft_typelib_t *typelib)
2352 {
2353     const expr_t *lcid_expr = get_attrp( typelib->typelib->attrs, ATTR_LIBLCID );
2354     typelib->typelib_header.lcid2 = lcid_expr ? lcid_expr->cval : 0x0;
2355 }
2356
2357 static void set_lib_flags(msft_typelib_t *typelib)
2358 {
2359     const attr_t *attr;
2360
2361     typelib->typelib_header.flags = 0;
2362     if (!typelib->typelib->attrs) return;
2363     LIST_FOR_EACH_ENTRY( attr, typelib->typelib->attrs, const attr_t, entry )
2364     {
2365         switch(attr->type) {
2366         case ATTR_CONTROL:
2367             typelib->typelib_header.flags |= 0x02; /* LIBFLAG_FCONTROL */
2368             break;
2369         case ATTR_HIDDEN:
2370             typelib->typelib_header.flags |= 0x04; /* LIBFLAG_FHIDDEN */
2371             break;
2372         case ATTR_RESTRICTED:
2373             typelib->typelib_header.flags |= 0x01; /* LIBFLAG_FRESTRICTED */
2374             break;
2375         default:
2376             break;
2377         }
2378     }
2379     return;
2380 }
2381
2382 static int ctl2_write_chunk(int fd, void *segment, int length)
2383 {
2384     if (write(fd, segment, length) != length) {
2385         close(fd);
2386         return 0;
2387     }
2388     return -1;
2389 }
2390
2391 static int ctl2_write_segment(msft_typelib_t *typelib, int fd, int segment)
2392 {
2393     if (write(fd, typelib->typelib_segment_data[segment], typelib->typelib_segdir[segment].length)
2394         != typelib->typelib_segdir[segment].length) {
2395         close(fd);
2396         return 0;
2397     }
2398
2399     return -1;
2400 }
2401
2402 static void ctl2_finalize_typeinfos(msft_typelib_t *typelib, int filesize)
2403 {
2404     msft_typeinfo_t *typeinfo;
2405
2406     for (typeinfo = typelib->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
2407         typeinfo->typeinfo->memoffset = filesize;
2408         if (typeinfo->func_data)
2409             filesize += typeinfo->func_data[0] + ((typeinfo->typeinfo->cElement & 0xffff) * 12);
2410         if (typeinfo->var_data)
2411             filesize += typeinfo->var_data[0] + (((typeinfo->typeinfo->cElement >> 16) & 0xffff) * 12);
2412         if (typeinfo->func_data || typeinfo->var_data)
2413             filesize += 4;
2414     }
2415 }
2416
2417 static int ctl2_finalize_segment(msft_typelib_t *typelib, int filepos, int segment)
2418 {
2419     if (typelib->typelib_segdir[segment].length) {
2420         typelib->typelib_segdir[segment].offset = filepos;
2421     } else {
2422         typelib->typelib_segdir[segment].offset = -1;
2423     }
2424
2425     return typelib->typelib_segdir[segment].length;
2426 }
2427
2428
2429 static void ctl2_write_typeinfos(msft_typelib_t *typelib, int fd)
2430 {
2431     msft_typeinfo_t *typeinfo;
2432     int typedata_size;
2433
2434     for (typeinfo = typelib->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
2435         if (!typeinfo->func_data && !typeinfo->var_data) continue;
2436         typedata_size = 0;
2437         if (typeinfo->func_data)
2438             typedata_size = typeinfo->func_data[0];
2439         if (typeinfo->var_data)
2440             typedata_size += typeinfo->var_data[0];
2441         ctl2_write_chunk(fd, &typedata_size, sizeof(int));
2442         if (typeinfo->func_data)
2443             ctl2_write_chunk(fd, typeinfo->func_data + 1, typeinfo->func_data[0]);
2444         if (typeinfo->var_data)
2445             ctl2_write_chunk(fd, typeinfo->var_data + 1, typeinfo->var_data[0]);
2446         if (typeinfo->func_indices)
2447             ctl2_write_chunk(fd, typeinfo->func_indices, (typeinfo->typeinfo->cElement & 0xffff) * 4);
2448         if (typeinfo->var_indices)
2449             ctl2_write_chunk(fd, typeinfo->var_indices, (typeinfo->typeinfo->cElement >> 16) * 4);
2450         if (typeinfo->func_names)
2451             ctl2_write_chunk(fd, typeinfo->func_names,   (typeinfo->typeinfo->cElement & 0xffff) * 4);
2452         if (typeinfo->var_names)
2453             ctl2_write_chunk(fd, typeinfo->var_names,   (typeinfo->typeinfo->cElement >> 16) * 4); 
2454         if (typeinfo->func_offsets)
2455             ctl2_write_chunk(fd, typeinfo->func_offsets, (typeinfo->typeinfo->cElement & 0xffff) * 4);
2456         if (typeinfo->var_offsets) {
2457             int add = 0, i, offset;
2458             if(typeinfo->func_data)
2459                 add = typeinfo->func_data[0];
2460             for(i = 0; i < (typeinfo->typeinfo->cElement >> 16); i++) {
2461                 offset = typeinfo->var_offsets[i];
2462                 offset += add;
2463                 ctl2_write_chunk(fd, &offset, 4);
2464             }
2465         }
2466     }
2467 }
2468
2469 static int save_all_changes(msft_typelib_t *typelib)
2470 {
2471     int retval;
2472     int filepos;
2473     int fd;
2474
2475     chat("save_all_changes(%p)\n", typelib);
2476
2477     retval = TYPE_E_IOERROR;
2478
2479     fd = open(typelib->typelib->filename, O_CREAT | O_WRONLY | O_TRUNC | O_BINARY, 0666);
2480     if (fd == -1) return retval;
2481
2482     filepos = sizeof(MSFT_Header) + sizeof(MSFT_SegDir);
2483     if(typelib->typelib_header.varflags & 0x100) filepos += 4; /* helpstringdll */
2484     filepos += typelib->typelib_header.nrtypeinfos * 4;
2485
2486     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_TYPEINFO);
2487     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_GUIDHASH);
2488     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_GUID);
2489     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_REFERENCES);
2490     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_IMPORTINFO);
2491     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_IMPORTFILES);
2492     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_NAMEHASH);
2493     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_NAME);
2494     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_STRING);
2495     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_TYPEDESC);
2496     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_ARRAYDESC);
2497     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_CUSTDATA);
2498     filepos += ctl2_finalize_segment(typelib, filepos, MSFT_SEG_CUSTDATAGUID);
2499
2500     ctl2_finalize_typeinfos(typelib, filepos);
2501
2502     if (!ctl2_write_chunk(fd, &typelib->typelib_header, sizeof(typelib->typelib_header))) return retval;
2503     if(typelib->typelib_header.varflags & 0x100)
2504         if (!ctl2_write_chunk(fd, &typelib->help_string_dll_offset, sizeof(typelib->help_string_dll_offset)))
2505             return retval;
2506
2507     if (!ctl2_write_chunk(fd, typelib->typelib_typeinfo_offsets, typelib->typelib_header.nrtypeinfos * 4)) return retval;
2508     if (!ctl2_write_chunk(fd, &typelib->typelib_segdir, sizeof(typelib->typelib_segdir))) return retval;
2509     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_TYPEINFO    )) return retval;
2510     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_GUIDHASH    )) return retval;
2511     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_GUID        )) return retval;
2512     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_REFERENCES  )) return retval;
2513     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_IMPORTINFO  )) return retval;
2514     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_IMPORTFILES )) return retval;
2515     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_NAMEHASH    )) return retval;
2516     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_NAME        )) return retval;
2517     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_STRING      )) return retval;
2518     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_TYPEDESC    )) return retval;
2519     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_ARRAYDESC   )) return retval;
2520     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_CUSTDATA    )) return retval;
2521     if (!ctl2_write_segment(typelib, fd, MSFT_SEG_CUSTDATAGUID)) return retval;
2522
2523     ctl2_write_typeinfos(typelib, fd);
2524
2525     if (close(fd) == -1) return retval;
2526
2527     retval = S_OK;
2528     return retval;
2529 }
2530
2531 int create_msft_typelib(typelib_t *typelib)
2532 {
2533     msft_typelib_t *msft;
2534     int failed = 0;
2535     const statement_t *stmt;
2536     time_t cur_time;
2537     char *time_override;
2538     unsigned int version = 5 << 24 | 1 << 16 | 164; /* 5.01.0164 */
2539     GUID midl_time_guid    = {0xde77ba63,0x517c,0x11d1,{0xa2,0xda,0x00,0x00,0xf8,0x77,0x3c,0xe9}}; 
2540     GUID midl_version_guid = {0xde77ba64,0x517c,0x11d1,{0xa2,0xda,0x00,0x00,0xf8,0x77,0x3c,0xe9}}; 
2541
2542     msft = xmalloc(sizeof(*msft));
2543     memset(msft, 0, sizeof(*msft));
2544     msft->typelib = typelib;
2545
2546     ctl2_init_header(msft);
2547     ctl2_init_segdir(msft);
2548
2549     msft->typelib_header.varflags |= SYS_WIN32;
2550
2551     /*
2552      * The following two calls return an offset or -1 if out of memory. We
2553      * specifically need an offset of 0, however, so...
2554      */
2555     if (ctl2_alloc_segment(msft, MSFT_SEG_GUIDHASH, 0x80, 0x80)) { failed = 1; }
2556     if (ctl2_alloc_segment(msft, MSFT_SEG_NAMEHASH, 0x200, 0x200)) { failed = 1; }
2557
2558     if(failed)
2559     {
2560         free(msft);
2561         return 0;
2562     }
2563
2564     msft->typelib_guidhash_segment = (int *)msft->typelib_segment_data[MSFT_SEG_GUIDHASH];
2565     msft->typelib_namehash_segment = (int *)msft->typelib_segment_data[MSFT_SEG_NAMEHASH];
2566
2567     memset(msft->typelib_guidhash_segment, 0xff, 0x80);
2568     memset(msft->typelib_namehash_segment, 0xff, 0x200);
2569
2570     set_lib_flags(msft);
2571     set_lcid(msft);
2572     set_help_file_name(msft);
2573     set_doc_string(msft);
2574     set_guid(msft);
2575     set_version(msft);
2576     set_name(msft);
2577     set_help_context(msft);
2578     set_help_string_dll(msft);
2579     set_help_string_context(msft);
2580     
2581     /* midl adds two sets of custom data to the library: the current unix time
2582        and midl's version number */
2583     time_override = getenv( "WIDL_TIME_OVERRIDE");
2584     cur_time = time_override ? atol( time_override) : time(NULL);
2585     set_custdata(msft, &midl_time_guid, VT_UI4, &cur_time, &msft->typelib_header.CustomDataOffset);
2586     set_custdata(msft, &midl_version_guid, VT_UI4, &version, &msft->typelib_header.CustomDataOffset);
2587
2588     if (typelib->stmts)
2589         LIST_FOR_EACH_ENTRY( stmt, typelib->stmts, const statement_t, entry )
2590             add_entry(msft, stmt);
2591
2592     save_all_changes(msft);
2593     free(msft);
2594     return 1;
2595 }