push 955563f995be8b0942dbb757ceb5b3a4c8ccafbf
[wine/hacks.git] / dlls / oleaut32 / typelib2.c
blobb011342e6d255c6b1348cdaaafd0a68f619df99a
1 /*
2 * TYPELIB2
4 * Copyright 2004 Alastair Bridgewater
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
20 * --------------------------------------------------------------------------------------
21 * Known problems:
23 * Badly incomplete.
25 * Only works on little-endian systems.
29 #include "config.h"
30 #include "wine/port.h"
32 #include <stdlib.h>
33 #include <string.h>
34 #include <stdarg.h>
35 #include <stdio.h>
36 #include <ctype.h>
38 #define COBJMACROS
39 #define NONAMELESSUNION
40 #define NONAMELESSSTRUCT
42 #include "winerror.h"
43 #include "windef.h"
44 #include "winbase.h"
45 #include "winnls.h"
46 #include "winuser.h"
48 #include "wine/unicode.h"
49 #include "objbase.h"
50 #include "typelib.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(typelib2);
54 /* WINE_DEFAULT_DEBUG_CHANNEL(ole); */
57 /******************************************************************************
58 * ICreateTypeLib2 {OLEAUT32}
60 * NOTES
61 * The ICreateTypeLib2 interface provides an interface whereby one may create
62 * new type library (.tlb) files.
64 * This interface inherits from ICreateTypeLib, and can be freely cast back
65 * and forth between an ICreateTypeLib and an ICreateTypeLib2 on local clients.
66 * This dispensation applies only to ICreateTypeLib objects obtained on MSFT
67 * format type libraries (those made through CreateTypeLib2).
69 * METHODS
72 /******************************************************************************
73 * ICreateTypeInfo2 {OLEAUT32}
75 * NOTES
76 * The ICreateTypeInfo2 interface provides an interface whereby one may add
77 * type information to type library (.tlb) files.
79 * This interface inherits from ICreateTypeInfo, and can be freely cast back
80 * and forth between an ICreateTypeInfo and an ICreateTypeInfo2 on local clients.
81 * This dispensation applies only to ICreateTypeInfo objects obtained on MSFT
82 * format type libraries (those made through CreateTypeLib2).
84 * METHODS
87 /******************************************************************************
88 * ITypeLib2 {OLEAUT32}
90 * NOTES
91 * The ITypeLib2 interface provides an interface whereby one may query MSFT
92 * format type library (.tlb) files.
94 * This interface inherits from ITypeLib, and can be freely cast back and
95 * forth between an ITypeLib and an ITypeLib2 on local clients. This
96 * dispensation applies only to ITypeLib objects obtained on MSFT format type
97 * libraries (those made through CreateTypeLib2).
99 * METHODS
102 /******************************************************************************
103 * ITypeInfo2 {OLEAUT32}
105 * NOTES
106 * The ITypeInfo2 interface provides an interface whereby one may query type
107 * information stored in MSFT format type library (.tlb) files.
109 * This interface inherits from ITypeInfo, and can be freely cast back and
110 * forth between an ITypeInfo and an ITypeInfo2 on local clients. This
111 * dispensation applies only to ITypeInfo objects obtained on MSFT format type
112 * libraries (those made through CreateTypeLib2).
114 * METHODS
117 /*================== Implementation Structures ===================================*/
119 enum MSFT_segment_index {
120 MSFT_SEG_TYPEINFO = 0, /* type information */
121 MSFT_SEG_IMPORTINFO, /* import information */
122 MSFT_SEG_IMPORTFILES, /* import filenames */
123 MSFT_SEG_REFERENCES, /* references (?) */
124 MSFT_SEG_GUIDHASH, /* hash table for guids? */
125 MSFT_SEG_GUID, /* guid storage */
126 MSFT_SEG_NAMEHASH, /* hash table for names */
127 MSFT_SEG_NAME, /* name storage */
128 MSFT_SEG_STRING, /* string storage */
129 MSFT_SEG_TYPEDESC, /* type descriptions */
130 MSFT_SEG_ARRAYDESC, /* array descriptions */
131 MSFT_SEG_CUSTDATA, /* custom data */
132 MSFT_SEG_CUSTDATAGUID, /* custom data guids */
133 MSFT_SEG_UNKNOWN, /* ??? */
134 MSFT_SEG_UNKNOWN2, /* ??? */
135 MSFT_SEG_MAX /* total number of segments */
138 typedef struct tagMSFT_ImpFile {
139 int guid;
140 LCID lcid;
141 int version;
142 char filename[0]; /* preceded by two bytes of encoded (length << 2) + flags in the low two bits. */
143 } MSFT_ImpFile;
145 typedef struct tagICreateTypeLib2Impl
147 const ICreateTypeLib2Vtbl *lpVtbl;
148 const ITypeLib2Vtbl *lpVtblTypeLib2;
150 LONG ref;
152 WCHAR *filename;
154 MSFT_Header typelib_header;
155 INT helpStringDll;
156 MSFT_pSeg typelib_segdir[MSFT_SEG_MAX];
157 char *typelib_segment_data[MSFT_SEG_MAX];
158 int typelib_segment_block_length[MSFT_SEG_MAX];
160 INT typelib_typeinfo_offsets[0x200]; /* Hope that's enough. */
162 INT *typelib_namehash_segment;
163 INT *typelib_guidhash_segment;
165 struct tagICreateTypeInfo2Impl *typeinfos;
166 struct tagICreateTypeInfo2Impl *last_typeinfo;
167 } ICreateTypeLib2Impl;
169 static inline ICreateTypeLib2Impl *impl_from_ITypeLib2( ITypeLib2 *iface )
171 return (ICreateTypeLib2Impl *)((char*)iface - FIELD_OFFSET(ICreateTypeLib2Impl, lpVtblTypeLib2));
174 typedef struct tagICreateTypeInfo2Impl
176 const ICreateTypeInfo2Vtbl *lpVtbl;
177 const ITypeInfo2Vtbl *lpVtblTypeInfo2;
179 LONG ref;
181 ICreateTypeLib2Impl *typelib;
182 MSFT_TypeInfoBase *typeinfo;
184 INT *typedata;
185 int typedata_allocated;
186 int typedata_length;
188 int indices[42];
189 int names[42];
190 int offsets[42];
192 int datawidth;
194 struct tagICreateTypeInfo2Impl *next_typeinfo;
195 } ICreateTypeInfo2Impl;
197 static inline ICreateTypeInfo2Impl *impl_from_ITypeInfo2( ITypeInfo2 *iface )
199 return (ICreateTypeInfo2Impl *)((char*)iface - FIELD_OFFSET(ICreateTypeInfo2Impl, lpVtblTypeInfo2));
202 static ULONG WINAPI ICreateTypeLib2_fnRelease(ICreateTypeLib2 *iface);
205 /*================== Internal functions ===================================*/
207 /****************************************************************************
208 * ctl2_init_header
210 * Initializes the type library header of a new typelib.
212 static void ctl2_init_header(
213 ICreateTypeLib2Impl *This) /* [I] The typelib to initialize. */
215 This->typelib_header.magic1 = 0x5446534d;
216 This->typelib_header.magic2 = 0x00010002;
217 This->typelib_header.posguid = -1;
218 This->typelib_header.lcid = This->typelib_header.lcid2 = GetUserDefaultLCID();
219 This->typelib_header.varflags = 0x40;
220 This->typelib_header.version = 0;
221 This->typelib_header.flags = 0;
222 This->typelib_header.nrtypeinfos = 0;
223 This->typelib_header.helpstring = -1;
224 This->typelib_header.helpstringcontext = 0;
225 This->typelib_header.helpcontext = 0;
226 This->typelib_header.nametablecount = 0;
227 This->typelib_header.nametablechars = 0;
228 This->typelib_header.NameOffset = -1;
229 This->typelib_header.helpfile = -1;
230 This->typelib_header.CustomDataOffset = -1;
231 This->typelib_header.res44 = 0x20;
232 This->typelib_header.res48 = 0x80;
233 This->typelib_header.dispatchpos = -1;
234 This->typelib_header.nimpinfos = 0;
235 This->helpStringDll = -1;
238 /****************************************************************************
239 * ctl2_init_segdir
241 * Initializes the segment directory of a new typelib.
243 static void ctl2_init_segdir(
244 ICreateTypeLib2Impl *This) /* [I] The typelib to initialize. */
246 int i;
247 MSFT_pSeg *segdir;
249 segdir = &This->typelib_segdir[MSFT_SEG_TYPEINFO];
251 for (i = 0; i < 15; i++) {
252 segdir[i].offset = -1;
253 segdir[i].length = 0;
254 segdir[i].res08 = -1;
255 segdir[i].res0c = 0x0f;
259 /****************************************************************************
260 * ctl2_hash_guid
262 * Generates a hash key from a GUID.
264 * RETURNS
266 * The hash key for the GUID.
268 static int ctl2_hash_guid(
269 REFGUID guid) /* [I] The guid to find. */
271 int hash;
272 int i;
274 hash = 0;
275 for (i = 0; i < 8; i ++) {
276 hash ^= ((const short *)guid)[i];
279 return hash & 0x1f;
282 /****************************************************************************
283 * ctl2_find_guid
285 * Locates a guid in a type library.
287 * RETURNS
289 * The offset into the GUID segment of the guid, or -1 if not found.
291 static int ctl2_find_guid(
292 ICreateTypeLib2Impl *This, /* [I] The typelib to operate against. */
293 int hash_key, /* [I] The hash key for the guid. */
294 REFGUID guid) /* [I] The guid to find. */
296 int offset;
297 MSFT_GuidEntry *guidentry;
299 offset = This->typelib_guidhash_segment[hash_key];
300 while (offset != -1) {
301 guidentry = (MSFT_GuidEntry *)&This->typelib_segment_data[MSFT_SEG_GUID][offset];
303 if (!memcmp(guidentry, guid, sizeof(GUID))) return offset;
305 offset = guidentry->next_hash;
308 return offset;
311 /****************************************************************************
312 * ctl2_find_name
314 * Locates a name in a type library.
316 * RETURNS
318 * The offset into the NAME segment of the name, or -1 if not found.
320 * NOTES
322 * The name must be encoded as with ctl2_encode_name().
324 static int ctl2_find_name(
325 ICreateTypeLib2Impl *This, /* [I] The typelib to operate against. */
326 const char *name) /* [I] The encoded name to find. */
328 int offset;
329 int *namestruct;
331 offset = This->typelib_namehash_segment[name[2] & 0x7f];
332 while (offset != -1) {
333 namestruct = (int *)&This->typelib_segment_data[MSFT_SEG_NAME][offset];
335 if (!((namestruct[2] ^ *((const int *)name)) & 0xffff00ff)) {
336 /* hash codes and lengths match, final test */
337 if (!strncasecmp(name+4, (void *)(namestruct+3), name[0])) break;
340 /* move to next item in hash bucket */
341 offset = namestruct[1];
344 return offset;
347 /****************************************************************************
348 * ctl2_encode_name
350 * Encodes a name string to a form suitable for storing into a type library
351 * or comparing to a name stored in a type library.
353 * RETURNS
355 * The length of the encoded name, including padding and length+hash fields.
357 * NOTES
359 * Will throw an exception if name or result are NULL. Is not multithread
360 * safe in the slightest.
362 static int ctl2_encode_name(
363 ICreateTypeLib2Impl *This, /* [I] The typelib to operate against (used for LCID only). */
364 const WCHAR *name, /* [I] The name string to encode. */
365 char **result) /* [O] A pointer to a pointer to receive the encoded name. */
367 int length;
368 static char converted_name[0x104];
369 int offset;
370 int value;
372 length = WideCharToMultiByte(CP_ACP, 0, name, strlenW(name), converted_name+4, 0x100, NULL, NULL);
373 converted_name[0] = length & 0xff;
375 converted_name[length + 4] = 0;
377 converted_name[1] = 0x00;
379 value = LHashValOfNameSysA(This->typelib_header.varflags & 0x0f, This->typelib_header.lcid, converted_name + 4);
381 converted_name[2] = value;
382 converted_name[3] = value >> 8;
384 for (offset = (4 - length) & 3; offset; offset--) converted_name[length + offset + 3] = 0x57;
386 *result = converted_name;
388 return (length + 7) & ~3;
391 /****************************************************************************
392 * ctl2_encode_string
394 * Encodes a string to a form suitable for storing into a type library or
395 * comparing to a string stored in a type library.
397 * RETURNS
399 * The length of the encoded string, including padding and length fields.
401 * NOTES
403 * Will throw an exception if string or result are NULL. Is not multithread
404 * safe in the slightest.
406 static int ctl2_encode_string(
407 ICreateTypeLib2Impl *This, /* [I] The typelib to operate against (not used?). */
408 const WCHAR *string, /* [I] The string to encode. */
409 char **result) /* [O] A pointer to a pointer to receive the encoded string. */
411 int length;
412 static char converted_string[0x104];
413 int offset;
415 length = WideCharToMultiByte(CP_ACP, 0, string, strlenW(string), converted_string+2, 0x102, NULL, NULL);
416 converted_string[0] = length & 0xff;
417 converted_string[1] = (length >> 8) & 0xff;
419 for (offset = (4 - (length + 2)) & 3; offset; offset--) converted_string[length + offset + 1] = 0x57;
421 *result = converted_string;
423 return (length + 5) & ~3;
426 /****************************************************************************
427 * ctl2_alloc_segment
429 * Allocates memory from a segment in a type library.
431 * RETURNS
433 * Success: The offset within the segment of the new data area.
434 * Failure: -1 (this is invariably an out of memory condition).
436 * BUGS
438 * Does not (yet) handle the case where the allocated segment memory needs to grow.
440 static int ctl2_alloc_segment(
441 ICreateTypeLib2Impl *This, /* [I] The type library in which to allocate. */
442 enum MSFT_segment_index segment, /* [I] The segment in which to allocate. */
443 int size, /* [I] The amount to allocate. */
444 int block_size) /* [I] Initial allocation block size, or 0 for default. */
446 int offset;
448 if(!This->typelib_segment_data[segment]) {
449 if (!block_size) block_size = 0x2000;
451 This->typelib_segment_block_length[segment] = block_size;
452 This->typelib_segment_data[segment] = HeapAlloc(GetProcessHeap(), 0, block_size);
453 if (!This->typelib_segment_data[segment]) return -1;
454 memset(This->typelib_segment_data[segment], 0x57, block_size);
457 while ((This->typelib_segdir[segment].length + size) > This->typelib_segment_block_length[segment]) {
458 char *block;
460 block_size = This->typelib_segment_block_length[segment];
461 block = HeapReAlloc(GetProcessHeap(), 0, This->typelib_segment_data[segment], block_size << 1);
462 if (!block) return -1;
464 if (segment == MSFT_SEG_TYPEINFO) {
465 /* TypeInfos have a direct pointer to their memory space, so we have to fix them up. */
466 ICreateTypeInfo2Impl *typeinfo;
468 for (typeinfo = This->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
469 typeinfo->typeinfo = (void *)&block[((char *)typeinfo->typeinfo) - This->typelib_segment_data[segment]];
473 memset(block + block_size, 0x57, block_size);
474 This->typelib_segment_block_length[segment] = block_size << 1;
475 This->typelib_segment_data[segment] = block;
478 offset = This->typelib_segdir[segment].length;
479 This->typelib_segdir[segment].length += size;
481 return offset;
484 /****************************************************************************
485 * ctl2_alloc_typeinfo
487 * Allocates and initializes a typeinfo structure in a type library.
489 * RETURNS
491 * Success: The offset of the new typeinfo.
492 * Failure: -1 (this is invariably an out of memory condition).
494 static int ctl2_alloc_typeinfo(
495 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
496 int nameoffset) /* [I] The offset of the name for this typeinfo. */
498 int offset;
499 MSFT_TypeInfoBase *typeinfo;
501 offset = ctl2_alloc_segment(This, MSFT_SEG_TYPEINFO, sizeof(MSFT_TypeInfoBase), 0);
502 if (offset == -1) return -1;
504 This->typelib_typeinfo_offsets[This->typelib_header.nrtypeinfos++] = offset;
506 typeinfo = (void *)(This->typelib_segment_data[MSFT_SEG_TYPEINFO] + offset);
508 typeinfo->typekind = (This->typelib_header.nrtypeinfos - 1) << 16;
509 typeinfo->memoffset = -1; /* should be EOF if no elements */
510 typeinfo->res2 = 0;
511 typeinfo->res3 = -1;
512 typeinfo->res4 = 3;
513 typeinfo->res5 = 0;
514 typeinfo->cElement = 0;
515 typeinfo->res7 = 0;
516 typeinfo->res8 = 0;
517 typeinfo->res9 = 0;
518 typeinfo->resA = 0;
519 typeinfo->posguid = -1;
520 typeinfo->flags = 0;
521 typeinfo->NameOffset = nameoffset;
522 typeinfo->version = 0;
523 typeinfo->docstringoffs = -1;
524 typeinfo->helpstringcontext = 0;
525 typeinfo->helpcontext = 0;
526 typeinfo->oCustData = -1;
527 typeinfo->cbSizeVft = 0;
528 typeinfo->cImplTypes = 0;
529 typeinfo->size = 0;
530 typeinfo->datatype1 = -1;
531 typeinfo->datatype2 = 0;
532 typeinfo->res18 = 0;
533 typeinfo->res19 = -1;
535 return offset;
538 /****************************************************************************
539 * ctl2_alloc_guid
541 * Allocates and initializes a GUID structure in a type library. Also updates
542 * the GUID hash table as needed.
544 * RETURNS
546 * Success: The offset of the new GUID.
547 * Failure: -1 (this is invariably an out of memory condition).
549 static int ctl2_alloc_guid(
550 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
551 MSFT_GuidEntry *guid) /* [I] The GUID to store. */
553 int offset;
554 MSFT_GuidEntry *guid_space;
555 int hash_key;
557 hash_key = ctl2_hash_guid(&guid->guid);
559 offset = ctl2_find_guid(This, hash_key, &guid->guid);
560 if (offset != -1) return offset;
562 offset = ctl2_alloc_segment(This, MSFT_SEG_GUID, sizeof(MSFT_GuidEntry), 0);
563 if (offset == -1) return -1;
565 guid_space = (void *)(This->typelib_segment_data[MSFT_SEG_GUID] + offset);
566 *guid_space = *guid;
568 guid_space->next_hash = This->typelib_guidhash_segment[hash_key];
569 This->typelib_guidhash_segment[hash_key] = offset;
571 return offset;
574 /****************************************************************************
575 * ctl2_alloc_name
577 * Allocates and initializes a name within a type library. Also updates the
578 * name hash table as needed.
580 * RETURNS
582 * Success: The offset within the segment of the new name.
583 * Failure: -1 (this is invariably an out of memory condition).
585 static int ctl2_alloc_name(
586 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
587 const WCHAR *name) /* [I] The name to store. */
589 int length;
590 int offset;
591 MSFT_NameIntro *name_space;
592 char *encoded_name;
594 length = ctl2_encode_name(This, name, &encoded_name);
596 offset = ctl2_find_name(This, encoded_name);
597 if (offset != -1) return offset;
599 offset = ctl2_alloc_segment(This, MSFT_SEG_NAME, length + 8, 0);
600 if (offset == -1) return -1;
602 name_space = (void *)(This->typelib_segment_data[MSFT_SEG_NAME] + offset);
603 name_space->hreftype = -1;
604 name_space->next_hash = -1;
605 memcpy(&name_space->namelen, encoded_name, length);
607 if (This->typelib_namehash_segment[encoded_name[2] & 0x7f] != -1)
608 name_space->next_hash = This->typelib_namehash_segment[encoded_name[2] & 0x7f];
610 This->typelib_namehash_segment[encoded_name[2] & 0x7f] = offset;
612 This->typelib_header.nametablecount += 1;
613 This->typelib_header.nametablechars += *encoded_name;
615 return offset;
618 /****************************************************************************
619 * ctl2_alloc_string
621 * Allocates and initializes a string in a type library.
623 * RETURNS
625 * Success: The offset within the segment of the new string.
626 * Failure: -1 (this is invariably an out of memory condition).
628 static int ctl2_alloc_string(
629 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
630 const WCHAR *string) /* [I] The string to store. */
632 int length;
633 int offset;
634 char *string_space;
635 char *encoded_string;
637 length = ctl2_encode_string(This, string, &encoded_string);
639 for (offset = 0; offset < This->typelib_segdir[MSFT_SEG_STRING].length;
640 offset += ((((This->typelib_segment_data[MSFT_SEG_STRING][offset + 1] << 8) & 0xff)
641 | (This->typelib_segment_data[MSFT_SEG_STRING][offset + 0] & 0xff)) + 5) & ~3) {
642 if (!memcmp(encoded_string, This->typelib_segment_data[MSFT_SEG_STRING] + offset, length)) return offset;
645 offset = ctl2_alloc_segment(This, MSFT_SEG_STRING, length, 0);
646 if (offset == -1) return -1;
648 string_space = This->typelib_segment_data[MSFT_SEG_STRING] + offset;
649 memcpy(string_space, encoded_string, length);
651 return offset;
654 /****************************************************************************
655 * ctl2_alloc_importinfo
657 * Allocates and initializes an import information structure in a type library.
659 * RETURNS
661 * Success: The offset of the new importinfo.
662 * Failure: -1 (this is invariably an out of memory condition).
664 static int ctl2_alloc_importinfo(
665 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
666 MSFT_ImpInfo *impinfo) /* [I] The import information to store. */
668 int offset;
669 MSFT_ImpInfo *impinfo_space;
671 for (offset = 0;
672 offset < This->typelib_segdir[MSFT_SEG_IMPORTINFO].length;
673 offset += sizeof(MSFT_ImpInfo)) {
674 if (!memcmp(&(This->typelib_segment_data[MSFT_SEG_IMPORTINFO][offset]),
675 impinfo, sizeof(MSFT_ImpInfo))) {
676 return offset;
680 impinfo->flags |= This->typelib_header.nimpinfos++;
682 offset = ctl2_alloc_segment(This, MSFT_SEG_IMPORTINFO, sizeof(MSFT_ImpInfo), 0);
683 if (offset == -1) return -1;
685 impinfo_space = (void *)(This->typelib_segment_data[MSFT_SEG_IMPORTINFO] + offset);
686 *impinfo_space = *impinfo;
688 return offset;
691 /****************************************************************************
692 * ctl2_alloc_importfile
694 * Allocates and initializes an import file definition in a type library.
696 * RETURNS
698 * Success: The offset of the new importinfo.
699 * Failure: -1 (this is invariably an out of memory condition).
701 static int ctl2_alloc_importfile(
702 ICreateTypeLib2Impl *This, /* [I] The type library to allocate in. */
703 int guidoffset, /* [I] The offset to the GUID for the imported library. */
704 int major_version, /* [I] The major version number of the imported library. */
705 int minor_version, /* [I] The minor version number of the imported library. */
706 const WCHAR *filename) /* [I] The filename of the imported library. */
708 int length;
709 int offset;
710 MSFT_ImpFile *importfile;
711 char *encoded_string;
713 length = ctl2_encode_string(This, filename, &encoded_string);
715 encoded_string[0] <<= 2;
716 encoded_string[0] |= 1;
718 for (offset = 0; offset < This->typelib_segdir[MSFT_SEG_IMPORTFILES].length;
719 offset += ((((This->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset + 0xd] << 8) & 0xff)
720 | (This->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset + 0xc] & 0xff)) >> 2) + 0xc) {
721 if (!memcmp(encoded_string, This->typelib_segment_data[MSFT_SEG_IMPORTFILES] + offset + 0xc, length)) return offset;
724 offset = ctl2_alloc_segment(This, MSFT_SEG_IMPORTFILES, length + 0xc, 0);
725 if (offset == -1) return -1;
727 importfile = (MSFT_ImpFile *)&This->typelib_segment_data[MSFT_SEG_IMPORTFILES][offset];
728 importfile->guid = guidoffset;
729 importfile->lcid = This->typelib_header.lcid2;
730 importfile->version = major_version | (minor_version << 16);
731 memcpy(importfile->filename, encoded_string, length);
733 return offset;
736 /****************************************************************************
737 * ctl2_alloc_custdata
739 * Allocates and initializes a "custom data" value in a type library.
741 * RETURNS
743 * Success: The offset of the new custdata.
744 * Failure:
746 * -1: Out of memory.
747 * -2: Unable to encode VARIANT data (typically a bug).
749 static int ctl2_alloc_custdata(
750 ICreateTypeLib2Impl *This, /* [I] The type library in which to encode the value. */
751 VARIANT *pVarVal) /* [I] The value to encode. */
753 int offset;
755 TRACE("(%p,%p(%d))\n",This,pVarVal,V_VT(pVarVal));
757 switch (V_VT(pVarVal)) {
758 case VT_UI4:
759 offset = ctl2_alloc_segment(This, MSFT_SEG_CUSTDATA, 8, 0);
760 if (offset == -1) return offset;
762 *((unsigned short *)&This->typelib_segment_data[MSFT_SEG_CUSTDATA][offset]) = VT_UI4;
763 *((unsigned long *)&This->typelib_segment_data[MSFT_SEG_CUSTDATA][offset+2]) = V_UI4(pVarVal);
764 break;
766 default:
767 FIXME("Unknown variable encoding vt %d.\n", V_VT(pVarVal));
768 return -2;
771 return offset;
774 /****************************************************************************
775 * ctl2_set_custdata
777 * Adds a custom data element to an object in a type library.
779 * RETURNS
781 * Success: S_OK.
782 * Failure: One of E_INVALIDARG or E_OUTOFMEMORY.
784 static HRESULT ctl2_set_custdata(
785 ICreateTypeLib2Impl *This, /* [I] The type library to store the custom data in. */
786 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
787 VARIANT *pVarVal, /* [I] The custom data itself. */
788 int *offset) /* [I/O] The list of custom data to prepend to. */
790 MSFT_GuidEntry guidentry;
791 int dataoffset;
792 int guidoffset;
793 int custoffset;
794 int *custdata;
796 guidentry.guid = *guid;
798 guidentry.hreftype = -1;
799 guidentry.next_hash = -1;
801 guidoffset = ctl2_alloc_guid(This, &guidentry);
802 if (guidoffset == -1) return E_OUTOFMEMORY;
803 dataoffset = ctl2_alloc_custdata(This, pVarVal);
804 if (dataoffset == -1) return E_OUTOFMEMORY;
805 if (dataoffset == -2) return E_INVALIDARG;
807 custoffset = ctl2_alloc_segment(This, MSFT_SEG_CUSTDATAGUID, 12, 0);
808 if (custoffset == -1) return E_OUTOFMEMORY;
810 custdata = (int *)&This->typelib_segment_data[MSFT_SEG_CUSTDATAGUID][custoffset];
811 custdata[0] = guidoffset;
812 custdata[1] = dataoffset;
813 custdata[2] = *offset;
814 *offset = custoffset;
816 return S_OK;
819 /****************************************************************************
820 * ctl2_encode_typedesc
822 * Encodes a type description, storing information in the TYPEDESC and ARRAYDESC
823 * segments as needed.
825 * RETURNS
827 * Success: 0.
828 * Failure: -1.
830 static int ctl2_encode_typedesc(
831 ICreateTypeLib2Impl *This, /* [I] The type library in which to encode the TYPEDESC. */
832 const TYPEDESC *tdesc, /* [I] The type description to encode. */
833 int *encoded_tdesc, /* [O] The encoded type description. */
834 int *width, /* [O] The width of the type, or NULL. */
835 int *alignment, /* [O] The alignment of the type, or NULL. */
836 int *decoded_size) /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
838 int default_tdesc;
839 int scratch;
840 int typeoffset;
841 int arrayoffset;
842 int *typedata;
843 int *arraydata;
844 int target_type;
845 int child_size;
847 default_tdesc = 0x80000000 | (tdesc->vt << 16) | tdesc->vt;
848 if (!width) width = &scratch;
849 if (!alignment) alignment = &scratch;
850 if (!decoded_size) decoded_size = &scratch;
852 *decoded_size = 0;
854 switch (tdesc->vt) {
855 case VT_UI1:
856 case VT_I1:
857 *encoded_tdesc = default_tdesc;
858 *width = 1;
859 *alignment = 1;
860 break;
862 case VT_INT:
863 *encoded_tdesc = 0x80000000 | (VT_I4 << 16) | VT_INT;
864 if ((This->typelib_header.varflags & 0x0f) == SYS_WIN16) {
865 *width = 2;
866 *alignment = 2;
867 } else {
868 *width = 4;
869 *alignment = 4;
871 break;
873 case VT_UINT:
874 *encoded_tdesc = 0x80000000 | (VT_UI4 << 16) | VT_UINT;
875 if ((This->typelib_header.varflags & 0x0f) == SYS_WIN16) {
876 *width = 2;
877 *alignment = 2;
878 } else {
879 *width = 4;
880 *alignment = 4;
882 break;
884 case VT_UI2:
885 case VT_I2:
886 case VT_BOOL:
887 *encoded_tdesc = default_tdesc;
888 *width = 2;
889 *alignment = 2;
890 break;
892 case VT_I4:
893 case VT_UI4:
894 case VT_R4:
895 case VT_ERROR:
896 case VT_BSTR:
897 case VT_HRESULT:
898 *encoded_tdesc = default_tdesc;
899 *width = 4;
900 *alignment = 4;
901 break;
903 case VT_CY:
904 *encoded_tdesc = default_tdesc;
905 *width = 8;
906 *alignment = 4; /* guess? */
907 break;
909 case VT_VOID:
910 *encoded_tdesc = 0x80000000 | (VT_EMPTY << 16) | tdesc->vt;
911 *width = 0;
912 *alignment = 1;
913 break;
915 case VT_PTR:
916 /* FIXME: Make with the error checking. */
917 FIXME("PTR vartype, may not work correctly.\n");
919 ctl2_encode_typedesc(This, tdesc->u.lptdesc, &target_type, NULL, NULL, &child_size);
921 for (typeoffset = 0; typeoffset < This->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
922 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
923 if (((typedata[0] & 0xffff) == VT_PTR) && (typedata[1] == target_type)) break;
926 if (typeoffset == This->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
927 int mix_field;
929 if (target_type & 0x80000000) {
930 mix_field = ((target_type >> 16) & 0x3fff) | VT_BYREF;
931 } else {
932 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][target_type];
933 mix_field = ((typedata[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
936 typeoffset = ctl2_alloc_segment(This, MSFT_SEG_TYPEDESC, 8, 0);
937 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
939 typedata[0] = (mix_field << 16) | VT_PTR;
940 typedata[1] = target_type;
943 *encoded_tdesc = typeoffset;
945 *width = 4;
946 *alignment = 4;
947 *decoded_size = sizeof(TYPEDESC) + child_size;
948 break;
950 case VT_SAFEARRAY:
951 /* FIXME: Make with the error checking. */
952 FIXME("SAFEARRAY vartype, may not work correctly.\n");
954 ctl2_encode_typedesc(This, tdesc->u.lptdesc, &target_type, NULL, NULL, &child_size);
956 for (typeoffset = 0; typeoffset < This->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
957 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
958 if (((typedata[0] & 0xffff) == VT_SAFEARRAY) && (typedata[1] == target_type)) break;
961 if (typeoffset == This->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
962 int mix_field;
964 if (target_type & 0x80000000) {
965 mix_field = ((target_type >> 16) & VT_TYPEMASK) | VT_ARRAY;
966 } else {
967 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][target_type];
968 mix_field = ((typedata[0] >> 16) == 0x7fff)? 0x7fff: 0x7ffe;
971 typeoffset = ctl2_alloc_segment(This, MSFT_SEG_TYPEDESC, 8, 0);
972 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
974 typedata[0] = (mix_field << 16) | VT_SAFEARRAY;
975 typedata[1] = target_type;
978 *encoded_tdesc = typeoffset;
980 *width = 4;
981 *alignment = 4;
982 *decoded_size = sizeof(TYPEDESC) + child_size;
983 break;
985 case VT_CARRAY:
987 /* FIXME: Make with the error checking. */
988 int num_dims = tdesc->u.lpadesc->cDims, elements = 1, dim;
990 ctl2_encode_typedesc(This, &tdesc->u.lpadesc->tdescElem, &target_type, width, alignment, NULL);
991 arrayoffset = ctl2_alloc_segment(This, MSFT_SEG_ARRAYDESC, (2 + 2 * num_dims) * sizeof(int), 0);
992 arraydata = (void *)&This->typelib_segment_data[MSFT_SEG_ARRAYDESC][arrayoffset];
994 arraydata[0] = target_type;
995 arraydata[1] = num_dims;
996 arraydata[1] |= ((num_dims * 2 * sizeof(int)) << 16);
997 arraydata += 2;
999 for(dim = 0; dim < num_dims; dim++) {
1000 arraydata[0] = tdesc->u.lpadesc->rgbounds[dim].cElements;
1001 arraydata[1] = tdesc->u.lpadesc->rgbounds[dim].lLbound;
1002 elements *= tdesc->u.lpadesc->rgbounds[dim].cElements;
1003 arraydata += 2;
1005 typeoffset = ctl2_alloc_segment(This, MSFT_SEG_TYPEDESC, 8, 0);
1006 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1008 typedata[0] = (0x7ffe << 16) | VT_CARRAY;
1009 typedata[1] = arrayoffset;
1011 *encoded_tdesc = typeoffset;
1012 *width = *width * elements;
1013 *decoded_size = sizeof(ARRAYDESC) + (num_dims - 1) * sizeof(SAFEARRAYBOUND);
1015 break;
1017 case VT_USERDEFINED:
1018 TRACE("USERDEFINED.\n");
1019 for (typeoffset = 0; typeoffset < This->typelib_segdir[MSFT_SEG_TYPEDESC].length; typeoffset += 8) {
1020 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1021 if ((typedata[0] == ((0x7fff << 16) | VT_USERDEFINED)) && (typedata[1] == tdesc->u.hreftype)) break;
1024 if (typeoffset == This->typelib_segdir[MSFT_SEG_TYPEDESC].length) {
1025 typeoffset = ctl2_alloc_segment(This, MSFT_SEG_TYPEDESC, 8, 0);
1026 typedata = (void *)&This->typelib_segment_data[MSFT_SEG_TYPEDESC][typeoffset];
1028 typedata[0] = (0x7fff << 16) | VT_USERDEFINED;
1029 typedata[1] = tdesc->u.hreftype;
1032 *encoded_tdesc = typeoffset;
1033 *width = 0;
1034 *alignment = 1;
1035 break;
1037 default:
1038 FIXME("Unrecognized type %d.\n", tdesc->vt);
1039 *encoded_tdesc = default_tdesc;
1040 *width = 0;
1041 *alignment = 1;
1042 break;
1045 return 0;
1048 /****************************************************************************
1049 * ctl2_find_nth_reference
1051 * Finds a reference by index into the linked list of reference records.
1053 * RETURNS
1055 * Success: Offset of the desired reference record.
1056 * Failure: -1.
1058 static int ctl2_find_nth_reference(
1059 ICreateTypeLib2Impl *This, /* [I] The type library in which to search. */
1060 int offset, /* [I] The starting offset of the reference list. */
1061 int index) /* [I] The index of the reference to find. */
1063 MSFT_RefRecord *ref;
1065 for (; index && (offset != -1); index--) {
1066 ref = (MSFT_RefRecord *)&This->typelib_segment_data[MSFT_SEG_REFERENCES][offset];
1067 offset = ref->onext;
1070 return offset;
1073 /****************************************************************************
1074 * ctl2_find_typeinfo_from_offset
1076 * Finds an ITypeInfo given an offset into the TYPEINFO segment.
1078 * RETURNS
1080 * Success: S_OK.
1081 * Failure: TYPE_E_ELEMENTNOTFOUND.
1083 static HRESULT ctl2_find_typeinfo_from_offset(
1084 ICreateTypeLib2Impl *This, /* [I] The typelib to find the typeinfo in. */
1085 int offset, /* [I] The offset of the desired typeinfo. */
1086 ITypeInfo **ppTinfo) /* [I] The typeinfo found. */
1088 void *typeinfodata;
1089 ICreateTypeInfo2Impl *typeinfo;
1091 typeinfodata = &This->typelib_segment_data[MSFT_SEG_TYPEINFO][offset];
1093 for (typeinfo = This->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
1094 if (typeinfo->typeinfo == typeinfodata) {
1095 *ppTinfo = (ITypeInfo *)&typeinfo->lpVtblTypeInfo2;
1096 ITypeInfo2_AddRef(*ppTinfo);
1097 return S_OK;
1101 ERR("Failed to find typeinfo, invariant varied.\n");
1103 return TYPE_E_ELEMENTNOTFOUND;
1106 /*================== ICreateTypeInfo2 Implementation ===================================*/
1108 /******************************************************************************
1109 * ICreateTypeInfo2_QueryInterface {OLEAUT32}
1111 * See IUnknown_QueryInterface.
1113 static HRESULT WINAPI ICreateTypeInfo2_fnQueryInterface(
1114 ICreateTypeInfo2 * iface,
1115 REFIID riid,
1116 VOID **ppvObject)
1118 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1120 TRACE("(%p)->(IID: %s)\n",This,debugstr_guid(riid));
1122 *ppvObject=NULL;
1123 if(IsEqualIID(riid, &IID_IUnknown) ||
1124 IsEqualIID(riid,&IID_ICreateTypeInfo)||
1125 IsEqualIID(riid,&IID_ICreateTypeInfo2))
1127 *ppvObject = This;
1128 } else if (IsEqualIID(riid, &IID_ITypeInfo) ||
1129 IsEqualIID(riid, &IID_ITypeInfo2)) {
1130 *ppvObject = &This->lpVtblTypeInfo2;
1133 if(*ppvObject)
1135 ICreateTypeLib2_AddRef(iface);
1136 TRACE("-- Interface: (%p)->(%p)\n",ppvObject,*ppvObject);
1137 return S_OK;
1139 TRACE("-- Interface: E_NOINTERFACE\n");
1140 return E_NOINTERFACE;
1143 /******************************************************************************
1144 * ICreateTypeInfo2_AddRef {OLEAUT32}
1146 * See IUnknown_AddRef.
1148 static ULONG WINAPI ICreateTypeInfo2_fnAddRef(ICreateTypeInfo2 *iface)
1150 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1151 ULONG ref = InterlockedIncrement(&This->ref);
1153 TRACE("(%p)->ref was %u\n",This, ref - 1);
1155 return ref;
1158 /******************************************************************************
1159 * ICreateTypeInfo2_Release {OLEAUT32}
1161 * See IUnknown_Release.
1163 static ULONG WINAPI ICreateTypeInfo2_fnRelease(ICreateTypeInfo2 *iface)
1165 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1166 ULONG ref = InterlockedDecrement(&This->ref);
1168 TRACE("(%p)->(%u)\n",This, ref);
1170 if (!ref) {
1171 if (This->typelib) {
1172 ICreateTypeLib2_fnRelease((ICreateTypeLib2 *)This->typelib);
1173 This->typelib = NULL;
1176 /* ICreateTypeLib2 frees all ICreateTypeInfos when it releases. */
1177 /* HeapFree(GetProcessHeap(),0,This); */
1178 return 0;
1181 return ref;
1185 /******************************************************************************
1186 * ICreateTypeInfo2_SetGuid {OLEAUT32}
1188 * See ICreateTypeInfo_SetGuid.
1190 static HRESULT WINAPI ICreateTypeInfo2_fnSetGuid(ICreateTypeInfo2 *iface, REFGUID guid)
1192 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1194 MSFT_GuidEntry guidentry;
1195 int offset;
1197 TRACE("(%p,%s)\n", iface, debugstr_guid(guid));
1199 guidentry.guid = *guid;
1200 guidentry.hreftype = This->typelib->typelib_typeinfo_offsets[This->typeinfo->typekind >> 16];
1201 guidentry.next_hash = -1;
1203 offset = ctl2_alloc_guid(This->typelib, &guidentry);
1205 if (offset == -1) return E_OUTOFMEMORY;
1207 This->typeinfo->posguid = offset;
1209 if (IsEqualIID(guid, &IID_IDispatch)) {
1210 This->typelib->typelib_header.dispatchpos = This->typelib->typelib_typeinfo_offsets[This->typeinfo->typekind >> 16];
1213 return S_OK;
1216 /******************************************************************************
1217 * ICreateTypeInfo2_SetTypeFlags {OLEAUT32}
1219 * See ICreateTypeInfo_SetTypeFlags.
1221 static HRESULT WINAPI ICreateTypeInfo2_fnSetTypeFlags(ICreateTypeInfo2 *iface, UINT uTypeFlags)
1223 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1225 TRACE("(%p,0x%x)\n", iface, uTypeFlags);
1227 This->typeinfo->flags = uTypeFlags;
1229 if (uTypeFlags & TYPEFLAG_FDISPATCHABLE) {
1230 MSFT_GuidEntry foo;
1231 int guidoffset;
1232 int fileoffset;
1233 MSFT_ImpInfo impinfo;
1234 static const WCHAR stdole2tlb[] = { 's','t','d','o','l','e','2','.','t','l','b',0 };
1236 foo.guid = IID_StdOle;
1237 foo.hreftype = 2;
1238 foo.next_hash = -1;
1239 guidoffset = ctl2_alloc_guid(This->typelib, &foo);
1240 if (guidoffset == -1) return E_OUTOFMEMORY;
1242 fileoffset = ctl2_alloc_importfile(This->typelib, guidoffset, 2, 0, stdole2tlb);
1243 if (fileoffset == -1) return E_OUTOFMEMORY;
1245 foo.guid = IID_IDispatch;
1246 foo.hreftype = 1;
1247 foo.next_hash = -1;
1248 guidoffset = ctl2_alloc_guid(This->typelib, &foo);
1249 if (guidoffset == -1) return E_OUTOFMEMORY;
1251 impinfo.flags = TKIND_INTERFACE << 24 | MSFT_IMPINFO_OFFSET_IS_GUID;
1252 impinfo.oImpFile = fileoffset;
1253 impinfo.oGuid = guidoffset;
1254 ctl2_alloc_importinfo(This->typelib, &impinfo);
1256 This->typelib->typelib_header.dispatchpos = 1;
1258 This->typeinfo->typekind |= 0x10;
1259 This->typeinfo->typekind &= ~0x0f;
1260 This->typeinfo->typekind |= TKIND_DISPATCH;
1263 return S_OK;
1266 /******************************************************************************
1267 * ICreateTypeInfo2_SetDocString {OLEAUT32}
1269 * See ICreateTypeInfo_SetDocString.
1271 static HRESULT WINAPI ICreateTypeInfo2_fnSetDocString(
1272 ICreateTypeInfo2* iface,
1273 LPOLESTR pStrDoc)
1275 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1277 int offset;
1279 TRACE("(%p,%s)\n", iface, debugstr_w(pStrDoc));
1280 if (!pStrDoc)
1281 return E_INVALIDARG;
1283 offset = ctl2_alloc_string(This->typelib, pStrDoc);
1284 if (offset == -1) return E_OUTOFMEMORY;
1285 This->typeinfo->docstringoffs = offset;
1286 return S_OK;
1289 /******************************************************************************
1290 * ICreateTypeInfo2_SetHelpContext {OLEAUT32}
1292 * See ICreateTypeInfo_SetHelpContext.
1294 static HRESULT WINAPI ICreateTypeInfo2_fnSetHelpContext(
1295 ICreateTypeInfo2* iface,
1296 DWORD dwHelpContext)
1298 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1300 TRACE("(%p,%d)\n", iface, dwHelpContext);
1302 This->typeinfo->helpcontext = dwHelpContext;
1304 return S_OK;
1307 /******************************************************************************
1308 * ICreateTypeInfo2_SetVersion {OLEAUT32}
1310 * See ICreateTypeInfo_SetVersion.
1312 static HRESULT WINAPI ICreateTypeInfo2_fnSetVersion(
1313 ICreateTypeInfo2* iface,
1314 WORD wMajorVerNum,
1315 WORD wMinorVerNum)
1317 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1319 TRACE("(%p,%d,%d)\n", iface, wMajorVerNum, wMinorVerNum);
1321 This->typeinfo->version = wMajorVerNum | (wMinorVerNum << 16);
1322 return S_OK;
1325 /******************************************************************************
1326 * ICreateTypeInfo2_AddRefTypeInfo {OLEAUT32}
1328 * See ICreateTypeInfo_AddRefTypeInfo.
1330 static HRESULT WINAPI ICreateTypeInfo2_fnAddRefTypeInfo(
1331 ICreateTypeInfo2* iface,
1332 ITypeInfo* pTInfo,
1333 HREFTYPE* phRefType)
1335 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1337 ITypeLib *container;
1338 UINT index;
1339 HRESULT res;
1341 TRACE("(%p,%p,%p)\n", iface, pTInfo, phRefType);
1344 * If this is one of ours, we set *phRefType to the TYPEINFO offset of
1345 * the referred TypeInfo. Otherwise, we presumably have more magic to do.
1347 * Unfortunately, we can't rely on the passed-in TypeInfo even having the
1348 * same internal structure as one of ours. It could be from another
1349 * implementation of ITypeInfo. So we need to do the following...
1351 res = ITypeInfo_GetContainingTypeLib(pTInfo, &container, &index);
1352 if (FAILED(res)) {
1353 TRACE("failed to find containing typelib.\n");
1354 return res;
1357 if (container == (ITypeLib *)&This->typelib->lpVtblTypeLib2) {
1358 *phRefType = This->typelib->typelib_typeinfo_offsets[index];
1359 } else {
1360 FIXME("(%p,%p,%p), pTInfo from different typelib.\n", iface, pTInfo, phRefType);
1363 ITypeLib_Release(container);
1364 return S_OK;
1367 /******************************************************************************
1368 * ICreateTypeInfo2_AddFuncDesc {OLEAUT32}
1370 * See ICreateTypeInfo_AddFuncDesc.
1372 static HRESULT WINAPI ICreateTypeInfo2_fnAddFuncDesc(
1373 ICreateTypeInfo2* iface,
1374 UINT index,
1375 FUNCDESC* pFuncDesc)
1377 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1379 int offset;
1380 int *typedata;
1381 int i;
1382 int decoded_size;
1384 FIXME("(%p,%d,%p), stub!\n", iface, index, pFuncDesc);
1385 FIXME("{%d,%p,%p,%d,%d,%d,%d,%d,%d,%d,{%d},%d}\n", pFuncDesc->memid, pFuncDesc->lprgscode, pFuncDesc->lprgelemdescParam, pFuncDesc->funckind, pFuncDesc->invkind, pFuncDesc->callconv, pFuncDesc->cParams, pFuncDesc->cParamsOpt, pFuncDesc->oVft, pFuncDesc->cScodes, pFuncDesc->elemdescFunc.tdesc.vt, pFuncDesc->wFuncFlags);
1386 /* FIXME("{%d, %d}\n", pFuncDesc->lprgelemdescParam[0].tdesc.vt, pFuncDesc->lprgelemdescParam[1].tdesc.vt); */
1387 /* return E_OUTOFMEMORY; */
1389 if (!This->typedata) {
1390 This->typedata = HeapAlloc(GetProcessHeap(), 0, 0x2000);
1391 This->typedata[0] = 0;
1394 /* allocate type data space for us */
1395 offset = This->typedata[0];
1396 This->typedata[0] += 0x18 + (pFuncDesc->cParams * 12);
1397 typedata = This->typedata + (offset >> 2) + 1;
1399 /* fill out the basic type information */
1400 typedata[0] = (0x18 + (pFuncDesc->cParams * 12)) | (index << 16);
1401 ctl2_encode_typedesc(This->typelib, &pFuncDesc->elemdescFunc.tdesc, &typedata[1], NULL, NULL, &decoded_size);
1402 typedata[2] = pFuncDesc->wFuncFlags;
1403 typedata[3] = ((sizeof(FUNCDESC) + decoded_size) << 16) | This->typeinfo->cbSizeVft;
1404 typedata[4] = (index << 16) | (pFuncDesc->callconv << 8) | 9;
1405 typedata[5] = pFuncDesc->cParams;
1407 /* NOTE: High word of typedata[3] is total size of FUNCDESC + size of all ELEMDESCs for params + TYPEDESCs for pointer params and return types. */
1408 /* That is, total memory allocation required to reconstitute the FUNCDESC in its entirety. */
1409 typedata[3] += (sizeof(ELEMDESC) * pFuncDesc->cParams) << 16;
1411 for (i = 0; i < pFuncDesc->cParams; i++) {
1412 ctl2_encode_typedesc(This->typelib, &pFuncDesc->lprgelemdescParam[i].tdesc, &typedata[6+(i*3)], NULL, NULL, &decoded_size);
1413 typedata[7+(i*3)] = -1;
1414 typedata[8+(i*3)] = pFuncDesc->lprgelemdescParam[i].u.paramdesc.wParamFlags;
1415 typedata[3] += decoded_size << 16;
1417 #if 0
1418 /* FIXME: Doesn't work. Doesn't even come up with usable VTs for varDefaultValue. */
1419 if (pFuncDesc->lprgelemdescParam[i].u.paramdesc.wParamFlags & PARAMFLAG_FHASDEFAULT) {
1420 ctl2_alloc_custdata(This->typelib, &pFuncDesc->lprgelemdescParam[i].u.paramdesc.pparamdescex->varDefaultValue);
1422 #endif
1425 /* update the index data */
1426 This->indices[index] = ((0x6000 | This->typeinfo->cImplTypes) << 16) | index;
1427 This->names[index] = -1;
1428 This->offsets[index] = offset;
1430 /* ??? */
1431 if (!This->typeinfo->res2) This->typeinfo->res2 = 0x20;
1432 This->typeinfo->res2 <<= 1;
1434 /* ??? */
1435 if (This->typeinfo->res3 == -1) This->typeinfo->res3 = 0;
1436 This->typeinfo->res3 += 0x38;
1438 /* ??? */
1439 if (index < 2) This->typeinfo->res2 += pFuncDesc->cParams << 4;
1440 This->typeinfo->res3 += pFuncDesc->cParams << 4;
1442 /* adjust size of VTBL */
1443 This->typeinfo->cbSizeVft += 4;
1445 /* Increment the number of function elements */
1446 This->typeinfo->cElement += 1;
1448 return S_OK;
1451 /******************************************************************************
1452 * ICreateTypeInfo2_AddImplType {OLEAUT32}
1454 * See ICreateTypeInfo_AddImplType.
1456 static HRESULT WINAPI ICreateTypeInfo2_fnAddImplType(
1457 ICreateTypeInfo2* iface,
1458 UINT index,
1459 HREFTYPE hRefType)
1461 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1463 TRACE("(%p,%d,%d)\n", iface, index, hRefType);
1465 if ((This->typeinfo->typekind & 15) == TKIND_COCLASS) {
1466 int offset;
1467 MSFT_RefRecord *ref;
1469 if (index == 0) {
1470 if (This->typeinfo->datatype1 != -1) return TYPE_E_ELEMENTNOTFOUND;
1472 offset = ctl2_alloc_segment(This->typelib, MSFT_SEG_REFERENCES, sizeof(MSFT_RefRecord), 0);
1473 if (offset == -1) return E_OUTOFMEMORY;
1475 This->typeinfo->datatype1 = offset;
1476 } else {
1477 int lastoffset;
1479 lastoffset = ctl2_find_nth_reference(This->typelib, This->typeinfo->datatype1, index - 1);
1480 if (lastoffset == -1) return TYPE_E_ELEMENTNOTFOUND;
1482 ref = (MSFT_RefRecord *)&This->typelib->typelib_segment_data[MSFT_SEG_REFERENCES][lastoffset];
1483 if (ref->onext != -1) return TYPE_E_ELEMENTNOTFOUND;
1485 offset = ctl2_alloc_segment(This->typelib, MSFT_SEG_REFERENCES, sizeof(MSFT_RefRecord), 0);
1486 if (offset == -1) return E_OUTOFMEMORY;
1488 ref->onext = offset;
1491 ref = (MSFT_RefRecord *)&This->typelib->typelib_segment_data[MSFT_SEG_REFERENCES][offset];
1493 ref->reftype = hRefType;
1494 ref->flags = 0;
1495 ref->oCustData = -1;
1496 ref->onext = -1;
1497 } else if ((This->typeinfo->typekind & 15) == TKIND_DISPATCH) {
1498 FIXME("dispatch case unhandled.\n");
1499 } else if ((This->typeinfo->typekind & 15) == TKIND_INTERFACE) {
1500 if (This->typeinfo->cImplTypes) {
1501 return (index == 1)? TYPE_E_BADMODULEKIND: TYPE_E_ELEMENTNOTFOUND;
1504 if (index != 0) return TYPE_E_ELEMENTNOTFOUND;
1506 This->typeinfo->cImplTypes++;
1508 /* hacked values for IDispatch only, and maybe only for stdole. */
1509 This->typeinfo->cbSizeVft += 0x0c; /* hack */
1510 This->typeinfo->datatype1 = hRefType;
1511 This->typeinfo->datatype2 = (3 << 16) | 1; /* ? */
1512 } else {
1513 FIXME("AddImplType unsupported on typekind %d\n", This->typeinfo->typekind & 15);
1514 return E_OUTOFMEMORY;
1517 return S_OK;
1520 /******************************************************************************
1521 * ICreateTypeInfo2_SetImplTypeFlags {OLEAUT32}
1523 * See ICreateTypeInfo_SetImplTypeFlags.
1525 static HRESULT WINAPI ICreateTypeInfo2_fnSetImplTypeFlags(
1526 ICreateTypeInfo2* iface,
1527 UINT index,
1528 INT implTypeFlags)
1530 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1531 int offset;
1532 MSFT_RefRecord *ref;
1534 TRACE("(%p,%d,0x%x)\n", iface, index, implTypeFlags);
1536 if ((This->typeinfo->typekind & 15) != TKIND_COCLASS) {
1537 return TYPE_E_BADMODULEKIND;
1540 offset = ctl2_find_nth_reference(This->typelib, This->typeinfo->datatype1, index);
1541 if (offset == -1) return TYPE_E_ELEMENTNOTFOUND;
1543 ref = (MSFT_RefRecord *)&This->typelib->typelib_segment_data[MSFT_SEG_REFERENCES][offset];
1544 ref->flags = implTypeFlags;
1546 return S_OK;
1549 /******************************************************************************
1550 * ICreateTypeInfo2_SetAlignment {OLEAUT32}
1552 * See ICreateTypeInfo_SetAlignment.
1554 static HRESULT WINAPI ICreateTypeInfo2_fnSetAlignment(
1555 ICreateTypeInfo2* iface,
1556 WORD cbAlignment)
1558 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1560 TRACE("(%p,%d)\n", iface, cbAlignment);
1562 if (!cbAlignment) return E_INVALIDARG;
1563 if (cbAlignment > 16) return E_INVALIDARG;
1565 This->typeinfo->typekind &= ~0xffc0;
1566 This->typeinfo->typekind |= cbAlignment << 6;
1568 /* FIXME: There's probably some way to simplify this. */
1569 switch (This->typeinfo->typekind & 15) {
1570 case TKIND_ALIAS:
1571 default:
1572 break;
1574 case TKIND_ENUM:
1575 case TKIND_INTERFACE:
1576 case TKIND_DISPATCH:
1577 case TKIND_COCLASS:
1578 if (cbAlignment > 4) cbAlignment = 4;
1579 break;
1581 case TKIND_RECORD:
1582 case TKIND_MODULE:
1583 case TKIND_UNION:
1584 cbAlignment = 1;
1585 break;
1588 This->typeinfo->typekind |= cbAlignment << 11;
1590 return S_OK;
1593 /******************************************************************************
1594 * ICreateTypeInfo2_SetSchema {OLEAUT32}
1596 * See ICreateTypeInfo_SetSchema.
1598 static HRESULT WINAPI ICreateTypeInfo2_fnSetSchema(
1599 ICreateTypeInfo2* iface,
1600 LPOLESTR pStrSchema)
1602 FIXME("(%p,%s), stub!\n", iface, debugstr_w(pStrSchema));
1603 return E_OUTOFMEMORY;
1606 /******************************************************************************
1607 * ICreateTypeInfo2_AddVarDesc {OLEAUT32}
1609 * See ICreateTypeInfo_AddVarDesc.
1611 static HRESULT WINAPI ICreateTypeInfo2_fnAddVarDesc(
1612 ICreateTypeInfo2* iface,
1613 UINT index,
1614 VARDESC* pVarDesc)
1616 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1617 int offset;
1618 INT *typedata;
1619 int var_datawidth;
1620 int var_alignment;
1621 int var_type_size;
1622 int alignment;
1624 TRACE("(%p,%d,%p), stub!\n", iface, index, pVarDesc);
1625 TRACE("%d, %p, %d, {{%x, %d}, {%p, %x}}, 0x%x, %d\n", pVarDesc->memid, pVarDesc->lpstrSchema, pVarDesc->u.oInst,
1626 pVarDesc->elemdescVar.tdesc.u.hreftype, pVarDesc->elemdescVar.tdesc.vt,
1627 pVarDesc->elemdescVar.u.paramdesc.pparamdescex, pVarDesc->elemdescVar.u.paramdesc.wParamFlags,
1628 pVarDesc->wVarFlags, pVarDesc->varkind);
1630 if ((This->typeinfo->cElement >> 16) != index) {
1631 TRACE("Out-of-order element.\n");
1632 return TYPE_E_ELEMENTNOTFOUND;
1635 if (!This->typedata) {
1636 This->typedata = HeapAlloc(GetProcessHeap(), 0, 0x2000);
1637 This->typedata[0] = 0;
1640 /* allocate type data space for us */
1641 offset = This->typedata[0];
1642 This->typedata[0] += 0x14;
1643 typedata = This->typedata + (offset >> 2) + 1;
1645 /* fill out the basic type information */
1646 typedata[0] = 0x14 | (index << 16);
1647 typedata[2] = pVarDesc->wVarFlags;
1648 typedata[3] = (sizeof(VARDESC) << 16) | 0;
1650 /* update the index data */
1651 This->indices[index] = 0x40000000 + index;
1652 This->names[index] = -1;
1653 This->offsets[index] = offset;
1655 /* figure out type widths and whatnot */
1656 ctl2_encode_typedesc(This->typelib, &pVarDesc->elemdescVar.tdesc,
1657 &typedata[1], &var_datawidth, &var_alignment,
1658 &var_type_size);
1660 /* pad out starting position to data width */
1661 This->datawidth += var_alignment - 1;
1662 This->datawidth &= ~(var_alignment - 1);
1663 typedata[4] = This->datawidth;
1665 /* add the new variable to the total data width */
1666 This->datawidth += var_datawidth;
1668 /* add type description size to total required allocation */
1669 typedata[3] += var_type_size << 16;
1671 /* fix type alignment */
1672 alignment = (This->typeinfo->typekind >> 11) & 0x1f;
1673 if (alignment < var_alignment) {
1674 alignment = var_alignment;
1675 This->typeinfo->typekind &= ~0xf800;
1676 This->typeinfo->typekind |= alignment << 11;
1679 /* ??? */
1680 if (!This->typeinfo->res2) This->typeinfo->res2 = 0x1a;
1681 if ((index == 0) || (index == 1) || (index == 2) || (index == 4) || (index == 9)) {
1682 This->typeinfo->res2 <<= 1;
1685 /* ??? */
1686 if (This->typeinfo->res3 == -1) This->typeinfo->res3 = 0;
1687 This->typeinfo->res3 += 0x2c;
1689 /* increment the number of variable elements */
1690 This->typeinfo->cElement += 0x10000;
1692 /* pad data width to alignment */
1693 This->typeinfo->size = (This->datawidth + (alignment - 1)) & ~(alignment - 1);
1695 return S_OK;
1698 /******************************************************************************
1699 * ICreateTypeInfo2_SetFuncAndParamNames {OLEAUT32}
1701 * See ICreateTypeInfo_SetFuncAndParamNames.
1703 static HRESULT WINAPI ICreateTypeInfo2_fnSetFuncAndParamNames(
1704 ICreateTypeInfo2* iface,
1705 UINT index,
1706 LPOLESTR* rgszNames,
1707 UINT cNames)
1709 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1711 UINT i;
1712 int offset;
1713 char *namedata;
1715 FIXME("(%p,%d,%s,%d), stub!\n", iface, index, debugstr_w(*rgszNames), cNames);
1717 offset = ctl2_alloc_name(This->typelib, rgszNames[0]);
1718 This->names[index] = offset;
1720 namedata = This->typelib->typelib_segment_data[MSFT_SEG_NAME] + offset;
1721 namedata[9] &= ~0x10;
1722 if (*((INT *)namedata) == -1) {
1723 *((INT *)namedata) = This->typelib->typelib_typeinfo_offsets[This->typeinfo->typekind >> 16];
1726 for (i = 1; i < cNames; i++) {
1727 /* FIXME: Almost certainly easy to break */
1728 int *paramdata = &This->typedata[This->offsets[index] >> 2];
1730 offset = ctl2_alloc_name(This->typelib, rgszNames[i]);
1731 paramdata[(i * 3) + 5] = offset;
1734 return S_OK;
1737 /******************************************************************************
1738 * ICreateTypeInfo2_SetVarName {OLEAUT32}
1740 * See ICreateTypeInfo_SetVarName.
1742 static HRESULT WINAPI ICreateTypeInfo2_fnSetVarName(
1743 ICreateTypeInfo2* iface,
1744 UINT index,
1745 LPOLESTR szName)
1747 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1748 int offset;
1749 char *namedata;
1751 TRACE("(%p,%d,%s), stub!\n", iface, index, debugstr_w(szName));
1753 if ((This->typeinfo->cElement >> 16) <= index) {
1754 TRACE("Out-of-order element.\n");
1755 return TYPE_E_ELEMENTNOTFOUND;
1758 offset = ctl2_alloc_name(This->typelib, szName);
1759 if (offset == -1) return E_OUTOFMEMORY;
1761 namedata = This->typelib->typelib_segment_data[MSFT_SEG_NAME] + offset;
1762 if (*((INT *)namedata) == -1) {
1763 *((INT *)namedata) = This->typelib->typelib_typeinfo_offsets[This->typeinfo->typekind >> 16];
1764 namedata[9] |= 0x10;
1766 if ((This->typeinfo->typekind & 15) == TKIND_ENUM) {
1767 namedata[9] |= 0x20;
1769 This->names[index] = offset;
1771 return S_OK;
1774 /******************************************************************************
1775 * ICreateTypeInfo2_SetTypeDescAlias {OLEAUT32}
1777 * See ICreateTypeInfo_SetTypeDescAlias.
1779 static HRESULT WINAPI ICreateTypeInfo2_fnSetTypeDescAlias(
1780 ICreateTypeInfo2* iface,
1781 TYPEDESC* pTDescAlias)
1783 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1785 int encoded_typedesc;
1786 int width;
1788 if ((This->typeinfo->typekind & 15) != TKIND_ALIAS) {
1789 return TYPE_E_WRONGTYPEKIND;
1792 FIXME("(%p,%p), hack!\n", iface, pTDescAlias);
1794 if (ctl2_encode_typedesc(This->typelib, pTDescAlias, &encoded_typedesc, &width, NULL, NULL) == -1) {
1795 return E_OUTOFMEMORY;
1798 This->typeinfo->size = width;
1799 This->typeinfo->datatype1 = encoded_typedesc;
1801 return S_OK;
1804 /******************************************************************************
1805 * ICreateTypeInfo2_DefineFuncAsDllEntry {OLEAUT32}
1807 * See ICreateTypeInfo_DefineFuncAsDllEntry.
1809 static HRESULT WINAPI ICreateTypeInfo2_fnDefineFuncAsDllEntry(
1810 ICreateTypeInfo2* iface,
1811 UINT index,
1812 LPOLESTR szDllName,
1813 LPOLESTR szProcName)
1815 FIXME("(%p,%d,%s,%s), stub!\n", iface, index, debugstr_w(szDllName), debugstr_w(szProcName));
1816 return E_OUTOFMEMORY;
1819 /******************************************************************************
1820 * ICreateTypeInfo2_SetFuncDocString {OLEAUT32}
1822 * See ICreateTypeInfo_SetFuncDocString.
1824 static HRESULT WINAPI ICreateTypeInfo2_fnSetFuncDocString(
1825 ICreateTypeInfo2* iface,
1826 UINT index,
1827 LPOLESTR szDocString)
1829 FIXME("(%p,%d,%s), stub!\n", iface, index, debugstr_w(szDocString));
1830 return E_OUTOFMEMORY;
1833 /******************************************************************************
1834 * ICreateTypeInfo2_SetVarDocString {OLEAUT32}
1836 * See ICreateTypeInfo_SetVarDocString.
1838 static HRESULT WINAPI ICreateTypeInfo2_fnSetVarDocString(
1839 ICreateTypeInfo2* iface,
1840 UINT index,
1841 LPOLESTR szDocString)
1843 ICreateTypeInfo2Impl *This = (ICreateTypeInfo2Impl *)iface;
1845 FIXME("(%p,%d,%s), stub!\n", iface, index, debugstr_w(szDocString));
1847 ctl2_alloc_string(This->typelib, szDocString);
1849 return E_OUTOFMEMORY;
1852 /******************************************************************************
1853 * ICreateTypeInfo2_SetFuncHelpContext {OLEAUT32}
1855 * See ICreateTypeInfo_SetFuncHelpContext.
1857 static HRESULT WINAPI ICreateTypeInfo2_fnSetFuncHelpContext(
1858 ICreateTypeInfo2* iface,
1859 UINT index,
1860 DWORD dwHelpContext)
1862 FIXME("(%p,%d,%d), stub!\n", iface, index, dwHelpContext);
1863 return E_OUTOFMEMORY;
1866 /******************************************************************************
1867 * ICreateTypeInfo2_SetVarHelpContext {OLEAUT32}
1869 * See ICreateTypeInfo_SetVarHelpContext.
1871 static HRESULT WINAPI ICreateTypeInfo2_fnSetVarHelpContext(
1872 ICreateTypeInfo2* iface,
1873 UINT index,
1874 DWORD dwHelpContext)
1876 FIXME("(%p,%d,%d), stub!\n", iface, index, dwHelpContext);
1877 return E_OUTOFMEMORY;
1880 /******************************************************************************
1881 * ICreateTypeInfo2_SetMops {OLEAUT32}
1883 * See ICreateTypeInfo_SetMops.
1885 static HRESULT WINAPI ICreateTypeInfo2_fnSetMops(
1886 ICreateTypeInfo2* iface,
1887 UINT index,
1888 BSTR bstrMops)
1890 FIXME("(%p,%d,%p), stub!\n", iface, index, bstrMops);
1891 return E_OUTOFMEMORY;
1894 /******************************************************************************
1895 * ICreateTypeInfo2_SetTypeIdldesc {OLEAUT32}
1897 * See ICreateTypeInfo_SetTypeIdldesc.
1899 static HRESULT WINAPI ICreateTypeInfo2_fnSetTypeIdldesc(
1900 ICreateTypeInfo2* iface,
1901 IDLDESC* pIdlDesc)
1903 FIXME("(%p,%p), stub!\n", iface, pIdlDesc);
1904 return E_OUTOFMEMORY;
1907 /******************************************************************************
1908 * ICreateTypeInfo2_LayOut {OLEAUT32}
1910 * See ICreateTypeInfo_LayOut.
1912 static HRESULT WINAPI ICreateTypeInfo2_fnLayOut(
1913 ICreateTypeInfo2* iface)
1915 TRACE("(%p), stub!\n", iface);
1916 /* return E_OUTOFMEMORY; */
1917 return S_OK;
1920 /******************************************************************************
1921 * ICreateTypeInfo2_DeleteFuncDesc {OLEAUT32}
1923 * Delete a function description from a type.
1925 * RETURNS
1927 * Success: S_OK.
1928 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
1930 static HRESULT WINAPI ICreateTypeInfo2_fnDeleteFuncDesc(
1931 ICreateTypeInfo2* iface, /* [I] The typeinfo from which to delete a function. */
1932 UINT index) /* [I] The index of the function to delete. */
1934 FIXME("(%p,%d), stub!\n", iface, index);
1935 return E_OUTOFMEMORY;
1938 /******************************************************************************
1939 * ICreateTypeInfo2_DeleteFuncDescByMemId {OLEAUT32}
1941 * Delete a function description from a type.
1943 * RETURNS
1945 * Success: S_OK.
1946 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
1948 static HRESULT WINAPI ICreateTypeInfo2_fnDeleteFuncDescByMemId(
1949 ICreateTypeInfo2* iface, /* [I] The typeinfo from which to delete a function. */
1950 MEMBERID memid, /* [I] The member id of the function to delete. */
1951 INVOKEKIND invKind) /* [I] The invocation type of the function to delete. (?) */
1953 FIXME("(%p,%d,%d), stub!\n", iface, memid, invKind);
1954 return E_OUTOFMEMORY;
1957 /******************************************************************************
1958 * ICreateTypeInfo2_DeleteVarDesc {OLEAUT32}
1960 * Delete a variable description from a type.
1962 * RETURNS
1964 * Success: S_OK.
1965 * Failure: One of E_OUTOFMEMORY, E_INVALIDARG, TYPE_E_IOERROR,
1966 * TYPE_E_INVDATAREAD, TYPE_E_UNSUPFORMAT or TYPE_E_INVALIDSTATE.
1968 static HRESULT WINAPI ICreateTypeInfo2_fnDeleteVarDesc(
1969 ICreateTypeInfo2* iface, /* [I] The typeinfo from which to delete the variable description. */
1970 UINT index) /* [I] The index of the variable description to delete. */
1972 FIXME("(%p,%d), stub!\n", iface, index);
1973 return E_OUTOFMEMORY;
1976 /******************************************************************************
1977 * ICreateTypeInfo2_DeleteVarDescByMemId {OLEAUT32}
1979 * Delete a variable description from a type.
1981 * RETURNS
1983 * Success: S_OK.
1984 * Failure: One of E_OUTOFMEMORY, E_INVALIDARG, TYPE_E_IOERROR,
1985 * TYPE_E_INVDATAREAD, TYPE_E_UNSUPFORMAT or TYPE_E_INVALIDSTATE.
1987 static HRESULT WINAPI ICreateTypeInfo2_fnDeleteVarDescByMemId(
1988 ICreateTypeInfo2* iface, /* [I] The typeinfo from which to delete the variable description. */
1989 MEMBERID memid) /* [I] The member id of the variable description to delete. */
1991 FIXME("(%p,%d), stub!\n", iface, memid);
1992 return E_OUTOFMEMORY;
1995 /******************************************************************************
1996 * ICreateTypeInfo2_DeleteImplType {OLEAUT32}
1998 * Delete an interface implementation from a type. (?)
2000 * RETURNS
2002 * Success: S_OK.
2003 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2005 static HRESULT WINAPI ICreateTypeInfo2_fnDeleteImplType(
2006 ICreateTypeInfo2* iface, /* [I] The typeinfo from which to delete. */
2007 UINT index) /* [I] The index of the interface to delete. */
2009 FIXME("(%p,%d), stub!\n", iface, index);
2010 return E_OUTOFMEMORY;
2013 /******************************************************************************
2014 * ICreateTypeInfo2_SetCustData {OLEAUT32}
2016 * Set the custom data for a type.
2018 * RETURNS
2020 * Success: S_OK.
2021 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2023 static HRESULT WINAPI ICreateTypeInfo2_fnSetCustData(
2024 ICreateTypeInfo2* iface, /* [I] The typeinfo in which to set the custom data. */
2025 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
2026 VARIANT* pVarVal) /* [I] The custom data. */
2028 FIXME("(%p,%s,%p), stub!\n", iface, debugstr_guid(guid), pVarVal);
2029 return E_OUTOFMEMORY;
2032 /******************************************************************************
2033 * ICreateTypeInfo2_SetFuncCustData {OLEAUT32}
2035 * Set the custom data for a function.
2037 * RETURNS
2039 * Success: S_OK.
2040 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2042 static HRESULT WINAPI ICreateTypeInfo2_fnSetFuncCustData(
2043 ICreateTypeInfo2* iface, /* [I] The typeinfo in which to set the custom data. */
2044 UINT index, /* [I] The index of the function for which to set the custom data. */
2045 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
2046 VARIANT* pVarVal) /* [I] The custom data. */
2048 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2049 return E_OUTOFMEMORY;
2052 /******************************************************************************
2053 * ICreateTypeInfo2_SetParamCustData {OLEAUT32}
2055 * Set the custom data for a function parameter.
2057 * RETURNS
2059 * Success: S_OK.
2060 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2062 static HRESULT WINAPI ICreateTypeInfo2_fnSetParamCustData(
2063 ICreateTypeInfo2* iface, /* [I] The typeinfo in which to set the custom data. */
2064 UINT indexFunc, /* [I] The index of the function on which the parameter resides. */
2065 UINT indexParam, /* [I] The index of the parameter on which to set the custom data. */
2066 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
2067 VARIANT* pVarVal) /* [I] The custom data. */
2069 FIXME("(%p,%d,%d,%s,%p), stub!\n", iface, indexFunc, indexParam, debugstr_guid(guid), pVarVal);
2070 return E_OUTOFMEMORY;
2073 /******************************************************************************
2074 * ICreateTypeInfo2_SetVarCustData {OLEAUT32}
2076 * Set the custom data for a variable.
2078 * RETURNS
2080 * Success: S_OK.
2081 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2083 static HRESULT WINAPI ICreateTypeInfo2_fnSetVarCustData(
2084 ICreateTypeInfo2* iface, /* [I] The typeinfo in which to set the custom data. */
2085 UINT index, /* [I] The index of the variable on which to set the custom data. */
2086 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
2087 VARIANT* pVarVal) /* [I] The custom data. */
2089 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2090 return E_OUTOFMEMORY;
2093 /******************************************************************************
2094 * ICreateTypeInfo2_SetImplTypeCustData {OLEAUT32}
2096 * Set the custom data for an implemented interface.
2098 * RETURNS
2100 * Success: S_OK.
2101 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2103 static HRESULT WINAPI ICreateTypeInfo2_fnSetImplTypeCustData(
2104 ICreateTypeInfo2* iface, /* [I] The typeinfo on which to set the custom data. */
2105 UINT index, /* [I] The index of the implemented interface on which to set the custom data. */
2106 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
2107 VARIANT* pVarVal) /* [I] The custom data. */
2109 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2110 return E_OUTOFMEMORY;
2113 /******************************************************************************
2114 * ICreateTypeInfo2_SetHelpStringContext {OLEAUT32}
2116 * Set the help string context for the typeinfo.
2118 * RETURNS
2120 * Success: S_OK.
2121 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2123 static HRESULT WINAPI ICreateTypeInfo2_fnSetHelpStringContext(
2124 ICreateTypeInfo2* iface, /* [I] The typeinfo on which to set the help string context. */
2125 ULONG dwHelpStringContext) /* [I] The help string context. */
2127 FIXME("(%p,%d), stub!\n", iface, dwHelpStringContext);
2128 return E_OUTOFMEMORY;
2131 /******************************************************************************
2132 * ICreateTypeInfo2_SetFuncHelpStringContext {OLEAUT32}
2134 * Set the help string context for a function.
2136 * RETURNS
2138 * Success: S_OK.
2139 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2141 static HRESULT WINAPI ICreateTypeInfo2_fnSetFuncHelpStringContext(
2142 ICreateTypeInfo2* iface, /* [I] The typeinfo on which to set the help string context. */
2143 UINT index, /* [I] The index for the function on which to set the help string context. */
2144 ULONG dwHelpStringContext) /* [I] The help string context. */
2146 FIXME("(%p,%d,%d), stub!\n", iface, index, dwHelpStringContext);
2147 return E_OUTOFMEMORY;
2150 /******************************************************************************
2151 * ICreateTypeInfo2_SetVarHelpStringContext {OLEAUT32}
2153 * Set the help string context for a variable.
2155 * RETURNS
2157 * Success: S_OK.
2158 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2160 static HRESULT WINAPI ICreateTypeInfo2_fnSetVarHelpStringContext(
2161 ICreateTypeInfo2* iface, /* [I] The typeinfo on which to set the help string context. */
2162 UINT index, /* [I] The index of the variable on which to set the help string context. */
2163 ULONG dwHelpStringContext) /* [I] The help string context */
2165 FIXME("(%p,%d,%d), stub!\n", iface, index, dwHelpStringContext);
2166 return E_OUTOFMEMORY;
2169 /******************************************************************************
2170 * ICreateTypeInfo2_Invalidate {OLEAUT32}
2172 * Undocumented function. (!)
2174 static HRESULT WINAPI ICreateTypeInfo2_fnInvalidate(
2175 ICreateTypeInfo2* iface)
2177 FIXME("(%p), stub!\n", iface);
2178 return E_OUTOFMEMORY;
2181 /******************************************************************************
2182 * ICreateTypeInfo2_SetName {OLEAUT32}
2184 * Set the name for a typeinfo.
2186 * RETURNS
2188 * Success: S_OK.
2189 * Failure: One of STG_E_INSUFFICIENTMEMORY, E_OUTOFMEMORY, E_INVALIDARG or TYPE_E_INVALIDSTATE.
2191 static HRESULT WINAPI ICreateTypeInfo2_fnSetName(
2192 ICreateTypeInfo2* iface,
2193 LPOLESTR szName)
2195 FIXME("(%p,%s), stub!\n", iface, debugstr_w(szName));
2196 return E_OUTOFMEMORY;
2199 /*================== ITypeInfo2 Implementation ===================================*/
2201 /******************************************************************************
2202 * ITypeInfo2_QueryInterface {OLEAUT32}
2204 * See IUnknown_QueryInterface.
2206 static HRESULT WINAPI ITypeInfo2_fnQueryInterface(ITypeInfo2 * iface, REFIID riid, LPVOID * ppv)
2208 ICreateTypeInfo2Impl *This = impl_from_ITypeInfo2(iface);
2210 return ICreateTypeInfo2_QueryInterface((ICreateTypeInfo2 *)This, riid, ppv);
2213 /******************************************************************************
2214 * ITypeInfo2_AddRef {OLEAUT32}
2216 * See IUnknown_AddRef.
2218 static ULONG WINAPI ITypeInfo2_fnAddRef(ITypeInfo2 * iface)
2220 ICreateTypeInfo2Impl *This = impl_from_ITypeInfo2(iface);
2222 return ICreateTypeInfo2_AddRef((ICreateTypeInfo2 *)This);
2225 /******************************************************************************
2226 * ITypeInfo2_Release {OLEAUT32}
2228 * See IUnknown_Release.
2230 static ULONG WINAPI ITypeInfo2_fnRelease(ITypeInfo2 * iface)
2232 ICreateTypeInfo2Impl *This = impl_from_ITypeInfo2(iface);
2234 return ICreateTypeInfo2_Release((ICreateTypeInfo2 *)This);
2237 /******************************************************************************
2238 * ITypeInfo2_GetTypeAttr {OLEAUT32}
2240 * See ITypeInfo_GetTypeAttr.
2242 static HRESULT WINAPI ITypeInfo2_fnGetTypeAttr(
2243 ITypeInfo2* iface,
2244 TYPEATTR** ppTypeAttr)
2246 FIXME("(%p,%p), stub!\n", iface, ppTypeAttr);
2247 return E_OUTOFMEMORY;
2250 /******************************************************************************
2251 * ITypeInfo2_GetTypeComp {OLEAUT32}
2253 * See ITypeInfo_GetTypeComp.
2255 static HRESULT WINAPI ITypeInfo2_fnGetTypeComp(
2256 ITypeInfo2* iface,
2257 ITypeComp** ppTComp)
2259 FIXME("(%p,%p), stub!\n", iface, ppTComp);
2260 return E_OUTOFMEMORY;
2263 /******************************************************************************
2264 * ITypeInfo2_GetFuncDesc {OLEAUT32}
2266 * See ITypeInfo_GetFuncDesc.
2268 static HRESULT WINAPI ITypeInfo2_fnGetFuncDesc(
2269 ITypeInfo2* iface,
2270 UINT index,
2271 FUNCDESC** ppFuncDesc)
2273 FIXME("(%p,%d,%p), stub!\n", iface, index, ppFuncDesc);
2274 return E_OUTOFMEMORY;
2277 /******************************************************************************
2278 * ITypeInfo2_GetVarDesc {OLEAUT32}
2280 * See ITypeInfo_GetVarDesc.
2282 static HRESULT WINAPI ITypeInfo2_fnGetVarDesc(
2283 ITypeInfo2* iface,
2284 UINT index,
2285 VARDESC** ppVarDesc)
2287 FIXME("(%p,%d,%p), stub!\n", iface, index, ppVarDesc);
2288 return E_OUTOFMEMORY;
2291 /******************************************************************************
2292 * ITypeInfo2_GetNames {OLEAUT32}
2294 * See ITypeInfo_GetNames.
2296 static HRESULT WINAPI ITypeInfo2_fnGetNames(
2297 ITypeInfo2* iface,
2298 MEMBERID memid,
2299 BSTR* rgBstrNames,
2300 UINT cMaxNames,
2301 UINT* pcNames)
2303 FIXME("(%p,%d,%p,%d,%p), stub!\n", iface, memid, rgBstrNames, cMaxNames, pcNames);
2304 return E_OUTOFMEMORY;
2307 /******************************************************************************
2308 * ITypeInfo2_GetRefTypeOfImplType {OLEAUT32}
2310 * See ITypeInfo_GetRefTypeOfImplType.
2312 static HRESULT WINAPI ITypeInfo2_fnGetRefTypeOfImplType(
2313 ITypeInfo2* iface,
2314 UINT index,
2315 HREFTYPE* pRefType)
2317 FIXME("(%p,%d,%p), stub!\n", iface, index, pRefType);
2318 return E_OUTOFMEMORY;
2321 /******************************************************************************
2322 * ITypeInfo2_GetImplTypeFlags {OLEAUT32}
2324 * See ITypeInfo_GetImplTypeFlags.
2326 static HRESULT WINAPI ITypeInfo2_fnGetImplTypeFlags(
2327 ITypeInfo2* iface,
2328 UINT index,
2329 INT* pImplTypeFlags)
2331 FIXME("(%p,%d,%p), stub!\n", iface, index, pImplTypeFlags);
2332 return E_OUTOFMEMORY;
2335 /******************************************************************************
2336 * ITypeInfo2_GetIDsOfNames {OLEAUT32}
2338 * See ITypeInfo_GetIDsOfNames.
2340 static HRESULT WINAPI ITypeInfo2_fnGetIDsOfNames(
2341 ITypeInfo2* iface,
2342 LPOLESTR* rgszNames,
2343 UINT cNames,
2344 MEMBERID* pMemId)
2346 FIXME("(%p,%p,%d,%p), stub!\n", iface, rgszNames, cNames, pMemId);
2347 return E_OUTOFMEMORY;
2350 /******************************************************************************
2351 * ITypeInfo2_Invoke {OLEAUT32}
2353 * See ITypeInfo_Invoke.
2355 static HRESULT WINAPI ITypeInfo2_fnInvoke(
2356 ITypeInfo2* iface,
2357 PVOID pvInstance,
2358 MEMBERID memid,
2359 WORD wFlags,
2360 DISPPARAMS* pDispParams,
2361 VARIANT* pVarResult,
2362 EXCEPINFO* pExcepInfo,
2363 UINT* puArgErr)
2365 FIXME("(%p,%p,%d,%x,%p,%p,%p,%p), stub!\n", iface, pvInstance, memid, wFlags, pDispParams, pVarResult, pExcepInfo, puArgErr);
2366 return E_OUTOFMEMORY;
2369 /******************************************************************************
2370 * ITypeInfo2_GetDocumentation {OLEAUT32}
2372 * See ITypeInfo_GetDocumentation.
2374 static HRESULT WINAPI ITypeInfo2_fnGetDocumentation(
2375 ITypeInfo2* iface,
2376 MEMBERID memid,
2377 BSTR* pBstrName,
2378 BSTR* pBstrDocString,
2379 DWORD* pdwHelpContext,
2380 BSTR* pBstrHelpFile)
2382 FIXME("(%p,%d,%p,%p,%p,%p), stub!\n", iface, memid, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile);
2383 return E_OUTOFMEMORY;
2386 /******************************************************************************
2387 * ITypeInfo2_GetDllEntry {OLEAUT32}
2389 * See ITypeInfo_GetDllEntry.
2391 static HRESULT WINAPI ITypeInfo2_fnGetDllEntry(
2392 ITypeInfo2* iface,
2393 MEMBERID memid,
2394 INVOKEKIND invKind,
2395 BSTR* pBstrDllName,
2396 BSTR* pBstrName,
2397 WORD* pwOrdinal)
2399 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", iface, memid, invKind, pBstrDllName, pBstrName, pwOrdinal);
2400 return E_OUTOFMEMORY;
2403 /******************************************************************************
2404 * ITypeInfo2_GetRefTypeInfo {OLEAUT32}
2406 * See ITypeInfo_GetRefTypeInfo.
2408 static HRESULT WINAPI ITypeInfo2_fnGetRefTypeInfo(
2409 ITypeInfo2* iface,
2410 HREFTYPE hRefType,
2411 ITypeInfo** ppTInfo)
2413 FIXME("(%p,%d,%p), stub!\n", iface, hRefType, ppTInfo);
2414 return E_OUTOFMEMORY;
2417 /******************************************************************************
2418 * ITypeInfo2_AddressOfMember {OLEAUT32}
2420 * See ITypeInfo_AddressOfMember.
2422 static HRESULT WINAPI ITypeInfo2_fnAddressOfMember(
2423 ITypeInfo2* iface,
2424 MEMBERID memid,
2425 INVOKEKIND invKind,
2426 PVOID* ppv)
2428 FIXME("(%p,%d,%d,%p), stub!\n", iface, memid, invKind, ppv);
2429 return E_OUTOFMEMORY;
2432 /******************************************************************************
2433 * ITypeInfo2_CreateInstance {OLEAUT32}
2435 * See ITypeInfo_CreateInstance.
2437 static HRESULT WINAPI ITypeInfo2_fnCreateInstance(
2438 ITypeInfo2* iface,
2439 IUnknown* pUnkOuter,
2440 REFIID riid,
2441 PVOID* ppvObj)
2443 FIXME("(%p,%p,%s,%p), stub!\n", iface, pUnkOuter, debugstr_guid(riid), ppvObj);
2444 return E_OUTOFMEMORY;
2447 /******************************************************************************
2448 * ITypeInfo2_GetMops {OLEAUT32}
2450 * See ITypeInfo_GetMops.
2452 static HRESULT WINAPI ITypeInfo2_fnGetMops(
2453 ITypeInfo2* iface,
2454 MEMBERID memid,
2455 BSTR* pBstrMops)
2457 FIXME("(%p,%d,%p), stub!\n", iface, memid, pBstrMops);
2458 return E_OUTOFMEMORY;
2461 /******************************************************************************
2462 * ITypeInfo2_GetContainingTypeLib {OLEAUT32}
2464 * See ITypeInfo_GetContainingTypeLib.
2466 static HRESULT WINAPI ITypeInfo2_fnGetContainingTypeLib(
2467 ITypeInfo2* iface,
2468 ITypeLib** ppTLib,
2469 UINT* pIndex)
2471 ICreateTypeInfo2Impl *This = impl_from_ITypeInfo2(iface);
2473 TRACE("(%p,%p,%p)\n", iface, ppTLib, pIndex);
2475 *ppTLib = (ITypeLib *)&This->typelib->lpVtblTypeLib2;
2476 This->typelib->ref++;
2477 *pIndex = This->typeinfo->typekind >> 16;
2479 return S_OK;
2482 /******************************************************************************
2483 * ITypeInfo2_ReleaseTypeAttr {OLEAUT32}
2485 * See ITypeInfo_ReleaseTypeAttr.
2487 static void WINAPI ITypeInfo2_fnReleaseTypeAttr(
2488 ITypeInfo2* iface,
2489 TYPEATTR* pTypeAttr)
2491 FIXME("(%p,%p), stub!\n", iface, pTypeAttr);
2494 /******************************************************************************
2495 * ITypeInfo2_ReleaseFuncDesc {OLEAUT32}
2497 * See ITypeInfo_ReleaseFuncDesc.
2499 static void WINAPI ITypeInfo2_fnReleaseFuncDesc(
2500 ITypeInfo2* iface,
2501 FUNCDESC* pFuncDesc)
2503 FIXME("(%p,%p), stub!\n", iface, pFuncDesc);
2506 /******************************************************************************
2507 * ITypeInfo2_ReleaseVarDesc {OLEAUT32}
2509 * See ITypeInfo_ReleaseVarDesc.
2511 static void WINAPI ITypeInfo2_fnReleaseVarDesc(
2512 ITypeInfo2* iface,
2513 VARDESC* pVarDesc)
2515 FIXME("(%p,%p), stub!\n", iface, pVarDesc);
2518 /******************************************************************************
2519 * ITypeInfo2_GetTypeKind {OLEAUT32}
2521 * Get the TYPEKIND value for a TypeInfo.
2523 * RETURNS
2525 * Success: S_OK.
2526 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2528 static HRESULT WINAPI ITypeInfo2_fnGetTypeKind(
2529 ITypeInfo2* iface, /* [I] The TypeInfo to obtain the typekind for. */
2530 TYPEKIND* pTypeKind) /* [O] The typekind for this TypeInfo. */
2532 FIXME("(%p,%p), stub!\n", iface, pTypeKind);
2533 return E_OUTOFMEMORY;
2536 /******************************************************************************
2537 * ITypeInfo2_GetTypeFlags {OLEAUT32}
2539 * Get the Type Flags for a TypeInfo.
2541 * RETURNS
2543 * Success: S_OK.
2544 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2546 static HRESULT WINAPI ITypeInfo2_fnGetTypeFlags(
2547 ITypeInfo2* iface, /* [I] The TypeInfo to obtain the typeflags for. */
2548 ULONG* pTypeFlags) /* [O] The type flags for this TypeInfo. */
2550 FIXME("(%p,%p), stub!\n", iface, pTypeFlags);
2551 return E_OUTOFMEMORY;
2554 /******************************************************************************
2555 * ITypeInfo2_GetFuncIndexOfMemId {OLEAUT32}
2557 * Gets the index of a function given its member id.
2559 * RETURNS
2561 * Success: S_OK.
2562 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2564 static HRESULT WINAPI ITypeInfo2_fnGetFuncIndexOfMemId(
2565 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the function. */
2566 MEMBERID memid, /* [I] The member id for the function. */
2567 INVOKEKIND invKind, /* [I] The invocation kind for the function. */
2568 UINT* pFuncIndex) /* [O] The index of the function. */
2570 FIXME("(%p,%d,%d,%p), stub!\n", iface, memid, invKind, pFuncIndex);
2571 return E_OUTOFMEMORY;
2574 /******************************************************************************
2575 * ITypeInfo2_GetVarIndexOfMemId {OLEAUT32}
2577 * Gets the index of a variable given its member id.
2579 * RETURNS
2581 * Success: S_OK.
2582 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2584 static HRESULT WINAPI ITypeInfo2_fnGetVarIndexOfMemId(
2585 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the variable. */
2586 MEMBERID memid, /* [I] The member id for the variable. */
2587 UINT* pVarIndex) /* [O] The index of the variable. */
2589 FIXME("(%p,%d,%p), stub!\n", iface, memid, pVarIndex);
2590 return E_OUTOFMEMORY;
2593 /******************************************************************************
2594 * ITypeInfo2_GetCustData {OLEAUT32}
2596 * Gets a custom data element from a TypeInfo.
2598 * RETURNS
2600 * Success: S_OK.
2601 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2603 static HRESULT WINAPI ITypeInfo2_fnGetCustData(
2604 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2605 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
2606 VARIANT* pVarVal) /* [O] The custom data. */
2608 FIXME("(%p,%s,%p), stub!\n", iface, debugstr_guid(guid), pVarVal);
2609 return E_OUTOFMEMORY;
2612 /******************************************************************************
2613 * ITypeInfo2_GetFuncCustData {OLEAUT32}
2615 * Gets a custom data element from a function.
2617 * RETURNS
2619 * Success: S_OK.
2620 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2622 static HRESULT WINAPI ITypeInfo2_fnGetFuncCustData(
2623 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2624 UINT index, /* [I] The index of the function for which to retrieve the custom data. */
2625 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
2626 VARIANT* pVarVal) /* [O] The custom data. */
2628 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2629 return E_OUTOFMEMORY;
2632 /******************************************************************************
2633 * ITypeInfo2_GetParamCustData {OLEAUT32}
2635 * Gets a custom data element from a parameter.
2637 * RETURNS
2639 * Success: S_OK.
2640 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2642 static HRESULT WINAPI ITypeInfo2_fnGetParamCustData(
2643 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2644 UINT indexFunc, /* [I] The index of the function for which to retrieve the custom data. */
2645 UINT indexParam, /* [I] The index of the parameter for which to retrieve the custom data. */
2646 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
2647 VARIANT* pVarVal) /* [O] The custom data. */
2649 FIXME("(%p,%d,%d,%s,%p), stub!\n", iface, indexFunc, indexParam, debugstr_guid(guid), pVarVal);
2650 return E_OUTOFMEMORY;
2653 /******************************************************************************
2654 * ITypeInfo2_GetVarCustData {OLEAUT32}
2656 * Gets a custom data element from a variable.
2658 * RETURNS
2660 * Success: S_OK.
2661 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2663 static HRESULT WINAPI ITypeInfo2_fnGetVarCustData(
2664 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2665 UINT index, /* [I] The index of the variable for which to retrieve the custom data. */
2666 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
2667 VARIANT* pVarVal) /* [O] The custom data. */
2669 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2670 return E_OUTOFMEMORY;
2673 /******************************************************************************
2674 * ITypeInfo2_GetImplTypeCustData {OLEAUT32}
2676 * Gets a custom data element from an implemented type of a TypeInfo.
2678 * RETURNS
2680 * Success: S_OK.
2681 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2683 static HRESULT WINAPI ITypeInfo2_fnGetImplTypeCustData(
2684 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2685 UINT index, /* [I] The index of the implemented type for which to retrieve the custom data. */
2686 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
2687 VARIANT* pVarVal) /* [O] The custom data. */
2689 FIXME("(%p,%d,%s,%p), stub!\n", iface, index, debugstr_guid(guid), pVarVal);
2690 return E_OUTOFMEMORY;
2693 /******************************************************************************
2694 * ITypeInfo2_GetDocumentation2 {OLEAUT32}
2696 * Gets some documentation from a TypeInfo in a locale-aware fashion.
2698 * RETURNS
2700 * Success: S_OK.
2701 * Failure: One of STG_E_INSUFFICIENTMEMORY or E_INVALIDARG.
2703 static HRESULT WINAPI ITypeInfo2_fnGetDocumentation2(
2704 ITypeInfo2* iface, /* [I] The TypeInfo to retrieve the documentation from. */
2705 MEMBERID memid, /* [I] The member id (why?). */
2706 LCID lcid, /* [I] The locale (why?). */
2707 BSTR* pbstrHelpString, /* [O] The help string. */
2708 DWORD* pdwHelpStringContext, /* [O] The help string context. */
2709 BSTR* pbstrHelpStringDll) /* [O] The help file name. */
2711 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", iface, memid, lcid, pbstrHelpString, pdwHelpStringContext, pbstrHelpStringDll);
2712 return E_OUTOFMEMORY;
2715 /******************************************************************************
2716 * ITypeInfo2_GetAllCustData {OLEAUT32}
2718 * Gets all of the custom data associated with a TypeInfo.
2720 * RETURNS
2722 * Success: S_OK.
2723 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2725 static HRESULT WINAPI ITypeInfo2_fnGetAllCustData(
2726 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2727 CUSTDATA* pCustData) /* [O] A pointer to the custom data. */
2729 FIXME("(%p,%p), stub!\n", iface, pCustData);
2730 return E_OUTOFMEMORY;
2733 /******************************************************************************
2734 * ITypeInfo2_GetAllFuncCustData {OLEAUT32}
2736 * Gets all of the custom data associated with a function.
2738 * RETURNS
2740 * Success: S_OK.
2741 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2743 static HRESULT WINAPI ITypeInfo2_fnGetAllFuncCustData(
2744 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2745 UINT index, /* [I] The index of the function for which to retrieve the custom data. */
2746 CUSTDATA* pCustData) /* [O] A pointer to the custom data. */
2748 FIXME("(%p,%d,%p), stub!\n", iface, index, pCustData);
2749 return E_OUTOFMEMORY;
2752 /******************************************************************************
2753 * ITypeInfo2_GetAllParamCustData {OLEAUT32}
2755 * Gets all of the custom data associated with a parameter.
2757 * RETURNS
2759 * Success: S_OK.
2760 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2762 static HRESULT WINAPI ITypeInfo2_fnGetAllParamCustData(
2763 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2764 UINT indexFunc, /* [I] The index of the function for which to retrieve the custom data. */
2765 UINT indexParam, /* [I] The index of the parameter for which to retrieve the custom data. */
2766 CUSTDATA* pCustData) /* [O] A pointer to the custom data. */
2768 FIXME("(%p,%d,%d,%p), stub!\n", iface, indexFunc, indexParam, pCustData);
2769 return E_OUTOFMEMORY;
2772 /******************************************************************************
2773 * ITypeInfo2_GetAllVarCustData {OLEAUT32}
2775 * Gets all of the custom data associated with a variable.
2777 * RETURNS
2779 * Success: S_OK.
2780 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2782 static HRESULT WINAPI ITypeInfo2_fnGetAllVarCustData(
2783 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2784 UINT index, /* [I] The index of the variable for which to retrieve the custom data. */
2785 CUSTDATA* pCustData) /* [O] A pointer to the custom data. */
2787 FIXME("(%p,%d,%p), stub!\n", iface, index, pCustData);
2788 return E_OUTOFMEMORY;
2791 /******************************************************************************
2792 * ITypeInfo2_GetAllImplTypeCustData {OLEAUT32}
2794 * Gets all of the custom data associated with an implemented type.
2796 * RETURNS
2798 * Success: S_OK.
2799 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2801 static HRESULT WINAPI ITypeInfo2_fnGetAllImplTypeCustData(
2802 ITypeInfo2* iface, /* [I] The TypeInfo in which to find the custom data. */
2803 UINT index, /* [I] The index of the implemented type for which to retrieve the custom data. */
2804 CUSTDATA* pCustData) /* [O] A pointer to the custom data. */
2806 FIXME("(%p,%d,%p), stub!\n", iface, index, pCustData);
2807 return E_OUTOFMEMORY;
2811 /*================== ICreateTypeInfo2 & ITypeInfo2 VTABLEs And Creation ===================================*/
2813 static const ICreateTypeInfo2Vtbl ctypeinfo2vt =
2816 ICreateTypeInfo2_fnQueryInterface,
2817 ICreateTypeInfo2_fnAddRef,
2818 ICreateTypeInfo2_fnRelease,
2820 ICreateTypeInfo2_fnSetGuid,
2821 ICreateTypeInfo2_fnSetTypeFlags,
2822 ICreateTypeInfo2_fnSetDocString,
2823 ICreateTypeInfo2_fnSetHelpContext,
2824 ICreateTypeInfo2_fnSetVersion,
2825 ICreateTypeInfo2_fnAddRefTypeInfo,
2826 ICreateTypeInfo2_fnAddFuncDesc,
2827 ICreateTypeInfo2_fnAddImplType,
2828 ICreateTypeInfo2_fnSetImplTypeFlags,
2829 ICreateTypeInfo2_fnSetAlignment,
2830 ICreateTypeInfo2_fnSetSchema,
2831 ICreateTypeInfo2_fnAddVarDesc,
2832 ICreateTypeInfo2_fnSetFuncAndParamNames,
2833 ICreateTypeInfo2_fnSetVarName,
2834 ICreateTypeInfo2_fnSetTypeDescAlias,
2835 ICreateTypeInfo2_fnDefineFuncAsDllEntry,
2836 ICreateTypeInfo2_fnSetFuncDocString,
2837 ICreateTypeInfo2_fnSetVarDocString,
2838 ICreateTypeInfo2_fnSetFuncHelpContext,
2839 ICreateTypeInfo2_fnSetVarHelpContext,
2840 ICreateTypeInfo2_fnSetMops,
2841 ICreateTypeInfo2_fnSetTypeIdldesc,
2842 ICreateTypeInfo2_fnLayOut,
2844 ICreateTypeInfo2_fnDeleteFuncDesc,
2845 ICreateTypeInfo2_fnDeleteFuncDescByMemId,
2846 ICreateTypeInfo2_fnDeleteVarDesc,
2847 ICreateTypeInfo2_fnDeleteVarDescByMemId,
2848 ICreateTypeInfo2_fnDeleteImplType,
2849 ICreateTypeInfo2_fnSetCustData,
2850 ICreateTypeInfo2_fnSetFuncCustData,
2851 ICreateTypeInfo2_fnSetParamCustData,
2852 ICreateTypeInfo2_fnSetVarCustData,
2853 ICreateTypeInfo2_fnSetImplTypeCustData,
2854 ICreateTypeInfo2_fnSetHelpStringContext,
2855 ICreateTypeInfo2_fnSetFuncHelpStringContext,
2856 ICreateTypeInfo2_fnSetVarHelpStringContext,
2857 ICreateTypeInfo2_fnInvalidate,
2858 ICreateTypeInfo2_fnSetName
2861 static const ITypeInfo2Vtbl typeinfo2vt =
2864 ITypeInfo2_fnQueryInterface,
2865 ITypeInfo2_fnAddRef,
2866 ITypeInfo2_fnRelease,
2868 ITypeInfo2_fnGetTypeAttr,
2869 ITypeInfo2_fnGetTypeComp,
2870 ITypeInfo2_fnGetFuncDesc,
2871 ITypeInfo2_fnGetVarDesc,
2872 ITypeInfo2_fnGetNames,
2873 ITypeInfo2_fnGetRefTypeOfImplType,
2874 ITypeInfo2_fnGetImplTypeFlags,
2875 ITypeInfo2_fnGetIDsOfNames,
2876 ITypeInfo2_fnInvoke,
2877 ITypeInfo2_fnGetDocumentation,
2878 ITypeInfo2_fnGetDllEntry,
2879 ITypeInfo2_fnGetRefTypeInfo,
2880 ITypeInfo2_fnAddressOfMember,
2881 ITypeInfo2_fnCreateInstance,
2882 ITypeInfo2_fnGetMops,
2883 ITypeInfo2_fnGetContainingTypeLib,
2884 ITypeInfo2_fnReleaseTypeAttr,
2885 ITypeInfo2_fnReleaseFuncDesc,
2886 ITypeInfo2_fnReleaseVarDesc,
2888 ITypeInfo2_fnGetTypeKind,
2889 ITypeInfo2_fnGetTypeFlags,
2890 ITypeInfo2_fnGetFuncIndexOfMemId,
2891 ITypeInfo2_fnGetVarIndexOfMemId,
2892 ITypeInfo2_fnGetCustData,
2893 ITypeInfo2_fnGetFuncCustData,
2894 ITypeInfo2_fnGetParamCustData,
2895 ITypeInfo2_fnGetVarCustData,
2896 ITypeInfo2_fnGetImplTypeCustData,
2897 ITypeInfo2_fnGetDocumentation2,
2898 ITypeInfo2_fnGetAllCustData,
2899 ITypeInfo2_fnGetAllFuncCustData,
2900 ITypeInfo2_fnGetAllParamCustData,
2901 ITypeInfo2_fnGetAllVarCustData,
2902 ITypeInfo2_fnGetAllImplTypeCustData,
2905 static ICreateTypeInfo2 *ICreateTypeInfo2_Constructor(ICreateTypeLib2Impl *typelib, WCHAR *szName, TYPEKIND tkind)
2907 ICreateTypeInfo2Impl *pCreateTypeInfo2Impl;
2909 int nameoffset;
2910 int typeinfo_offset;
2911 MSFT_TypeInfoBase *typeinfo;
2913 TRACE("Constructing ICreateTypeInfo2 for %s with tkind %d\n", debugstr_w(szName), tkind);
2915 pCreateTypeInfo2Impl = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(ICreateTypeInfo2Impl));
2916 if (!pCreateTypeInfo2Impl) return NULL;
2918 pCreateTypeInfo2Impl->lpVtbl = &ctypeinfo2vt;
2919 pCreateTypeInfo2Impl->lpVtblTypeInfo2 = &typeinfo2vt;
2920 pCreateTypeInfo2Impl->ref = 1;
2922 pCreateTypeInfo2Impl->typelib = typelib;
2923 typelib->ref++;
2925 nameoffset = ctl2_alloc_name(typelib, szName);
2926 typeinfo_offset = ctl2_alloc_typeinfo(typelib, nameoffset);
2927 typeinfo = (MSFT_TypeInfoBase *)&typelib->typelib_segment_data[MSFT_SEG_TYPEINFO][typeinfo_offset];
2929 typelib->typelib_segment_data[MSFT_SEG_NAME][nameoffset + 9] = 0x38;
2930 *((int *)&typelib->typelib_segment_data[MSFT_SEG_NAME][nameoffset]) = typeinfo_offset;
2932 pCreateTypeInfo2Impl->typeinfo = typeinfo;
2934 typeinfo->typekind |= tkind | 0x20;
2935 ICreateTypeInfo2_SetAlignment((ICreateTypeInfo2 *)pCreateTypeInfo2Impl, 4);
2937 switch (tkind) {
2938 case TKIND_ENUM:
2939 case TKIND_INTERFACE:
2940 case TKIND_DISPATCH:
2941 case TKIND_COCLASS:
2942 typeinfo->size = 4;
2943 break;
2945 case TKIND_RECORD:
2946 case TKIND_UNION:
2947 typeinfo->size = 0;
2948 break;
2950 case TKIND_MODULE:
2951 typeinfo->size = 2;
2952 break;
2954 case TKIND_ALIAS:
2955 typeinfo->size = -0x75;
2956 break;
2958 default:
2959 FIXME("(%s,%d), unrecognized typekind %d\n", debugstr_w(szName), tkind, tkind);
2960 typeinfo->size = 0xdeadbeef;
2961 break;
2964 if (typelib->last_typeinfo) typelib->last_typeinfo->next_typeinfo = pCreateTypeInfo2Impl;
2965 typelib->last_typeinfo = pCreateTypeInfo2Impl;
2966 if (!typelib->typeinfos) typelib->typeinfos = pCreateTypeInfo2Impl;
2968 TRACE(" -- %p\n", pCreateTypeInfo2Impl);
2970 return (ICreateTypeInfo2 *)pCreateTypeInfo2Impl;
2974 /*================== ICreateTypeLib2 Implementation ===================================*/
2976 /******************************************************************************
2977 * ICreateTypeLib2_QueryInterface {OLEAUT32}
2979 * See IUnknown_QueryInterface.
2981 static HRESULT WINAPI ICreateTypeLib2_fnQueryInterface(
2982 ICreateTypeLib2 * iface,
2983 REFIID riid,
2984 VOID **ppvObject)
2986 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
2988 TRACE("(%p)->(IID: %s)\n",This,debugstr_guid(riid));
2990 *ppvObject=NULL;
2991 if(IsEqualIID(riid, &IID_IUnknown) ||
2992 IsEqualIID(riid,&IID_ICreateTypeLib)||
2993 IsEqualIID(riid,&IID_ICreateTypeLib2))
2995 *ppvObject = This;
2996 } else if (IsEqualIID(riid, &IID_ITypeLib) ||
2997 IsEqualIID(riid, &IID_ITypeLib2)) {
2998 *ppvObject = &This->lpVtblTypeLib2;
3001 if(*ppvObject)
3003 ICreateTypeLib2_AddRef(iface);
3004 TRACE("-- Interface: (%p)->(%p)\n",ppvObject,*ppvObject);
3005 return S_OK;
3007 TRACE("-- Interface: E_NOINTERFACE\n");
3008 return E_NOINTERFACE;
3011 /******************************************************************************
3012 * ICreateTypeLib2_AddRef {OLEAUT32}
3014 * See IUnknown_AddRef.
3016 static ULONG WINAPI ICreateTypeLib2_fnAddRef(ICreateTypeLib2 *iface)
3018 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3019 ULONG ref = InterlockedIncrement(&This->ref);
3021 TRACE("(%p)->ref was %u\n",This, ref - 1);
3023 return ref;
3026 /******************************************************************************
3027 * ICreateTypeLib2_Release {OLEAUT32}
3029 * See IUnknown_Release.
3031 static ULONG WINAPI ICreateTypeLib2_fnRelease(ICreateTypeLib2 *iface)
3033 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3034 ULONG ref = InterlockedDecrement(&This->ref);
3036 TRACE("(%p)->(%u)\n",This, ref);
3038 if (!ref) {
3039 int i;
3041 for (i = 0; i < MSFT_SEG_MAX; i++) {
3042 HeapFree(GetProcessHeap(), 0, This->typelib_segment_data[i]);
3043 This->typelib_segment_data[i] = NULL;
3046 HeapFree(GetProcessHeap(), 0, This->filename);
3047 This->filename = NULL;
3049 while (This->typeinfos) {
3050 ICreateTypeInfo2Impl *typeinfo = This->typeinfos;
3051 This->typeinfos = typeinfo->next_typeinfo;
3052 HeapFree(GetProcessHeap(), 0, typeinfo->typedata);
3053 HeapFree(GetProcessHeap(), 0, typeinfo);
3056 HeapFree(GetProcessHeap(),0,This);
3057 return 0;
3060 return ref;
3064 /******************************************************************************
3065 * ICreateTypeLib2_CreateTypeInfo {OLEAUT32}
3067 * See ICreateTypeLib_CreateTypeInfo.
3069 static HRESULT WINAPI ICreateTypeLib2_fnCreateTypeInfo(
3070 ICreateTypeLib2 * iface,
3071 LPOLESTR szName,
3072 TYPEKIND tkind,
3073 ICreateTypeInfo **ppCTInfo)
3075 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3077 TRACE("(%p,%s,%d,%p)\n", iface, debugstr_w(szName), tkind, ppCTInfo);
3079 *ppCTInfo = (ICreateTypeInfo *)ICreateTypeInfo2_Constructor(This, szName, tkind);
3081 if (!*ppCTInfo) return E_OUTOFMEMORY;
3083 return S_OK;
3086 /******************************************************************************
3087 * ICreateTypeLib2_SetName {OLEAUT32}
3089 * See ICreateTypeLib_SetName.
3091 static HRESULT WINAPI ICreateTypeLib2_fnSetName(
3092 ICreateTypeLib2 * iface,
3093 LPOLESTR szName)
3095 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3097 int offset;
3099 TRACE("(%p,%s)\n", iface, debugstr_w(szName));
3101 offset = ctl2_alloc_name(This, szName);
3102 if (offset == -1) return E_OUTOFMEMORY;
3103 This->typelib_header.NameOffset = offset;
3104 return S_OK;
3107 /******************************************************************************
3108 * ICreateTypeLib2_SetVersion {OLEAUT32}
3110 * See ICreateTypeLib_SetVersion.
3112 static HRESULT WINAPI ICreateTypeLib2_fnSetVersion(ICreateTypeLib2 * iface, WORD wMajorVerNum, WORD wMinorVerNum)
3114 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3116 TRACE("(%p,%d,%d)\n", iface, wMajorVerNum, wMinorVerNum);
3118 This->typelib_header.version = wMajorVerNum | (wMinorVerNum << 16);
3119 return S_OK;
3122 /******************************************************************************
3123 * ICreateTypeLib2_SetGuid {OLEAUT32}
3125 * See ICreateTypeLib_SetGuid.
3127 static HRESULT WINAPI ICreateTypeLib2_fnSetGuid(ICreateTypeLib2 * iface, REFGUID guid)
3129 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3131 MSFT_GuidEntry guidentry;
3132 int offset;
3134 TRACE("(%p,%s)\n", iface, debugstr_guid(guid));
3136 guidentry.guid = *guid;
3137 guidentry.hreftype = -2;
3138 guidentry.next_hash = -1;
3140 offset = ctl2_alloc_guid(This, &guidentry);
3142 if (offset == -1) return E_OUTOFMEMORY;
3144 This->typelib_header.posguid = offset;
3146 return S_OK;
3149 /******************************************************************************
3150 * ICreateTypeLib2_SetDocString {OLEAUT32}
3152 * See ICreateTypeLib_SetDocString.
3154 static HRESULT WINAPI ICreateTypeLib2_fnSetDocString(ICreateTypeLib2 * iface, LPOLESTR szDoc)
3156 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3158 int offset;
3160 TRACE("(%p,%s)\n", iface, debugstr_w(szDoc));
3161 if (!szDoc)
3162 return E_INVALIDARG;
3164 offset = ctl2_alloc_string(This, szDoc);
3165 if (offset == -1) return E_OUTOFMEMORY;
3166 This->typelib_header.helpstring = offset;
3167 return S_OK;
3170 /******************************************************************************
3171 * ICreateTypeLib2_SetHelpFileName {OLEAUT32}
3173 * See ICreateTypeLib_SetHelpFileName.
3175 static HRESULT WINAPI ICreateTypeLib2_fnSetHelpFileName(ICreateTypeLib2 * iface, LPOLESTR szHelpFileName)
3177 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3179 int offset;
3181 TRACE("(%p,%s)\n", iface, debugstr_w(szHelpFileName));
3183 offset = ctl2_alloc_string(This, szHelpFileName);
3184 if (offset == -1) return E_OUTOFMEMORY;
3185 This->typelib_header.helpfile = offset;
3186 This->typelib_header.varflags |= 0x10;
3187 return S_OK;
3190 /******************************************************************************
3191 * ICreateTypeLib2_SetHelpContext {OLEAUT32}
3193 * See ICreateTypeLib_SetHelpContext.
3195 static HRESULT WINAPI ICreateTypeLib2_fnSetHelpContext(ICreateTypeLib2 * iface, DWORD dwHelpContext)
3197 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3199 TRACE("(%p,%d)\n", iface, dwHelpContext);
3200 This->typelib_header.helpcontext = dwHelpContext;
3201 return S_OK;
3204 /******************************************************************************
3205 * ICreateTypeLib2_SetLcid {OLEAUT32}
3207 * Sets both the lcid and lcid2 members in the header to lcid.
3209 * As a special case if lcid == LOCALE_NEUTRAL (0), then the first header lcid
3210 * is set to US English while the second one is set to 0.
3212 static HRESULT WINAPI ICreateTypeLib2_fnSetLcid(ICreateTypeLib2 * iface, LCID lcid)
3214 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3216 TRACE("(%p,%d)\n", iface, lcid);
3218 This->typelib_header.lcid = This->typelib_header.lcid2 = lcid;
3220 if(lcid == LOCALE_NEUTRAL) This->typelib_header.lcid = MAKELANGID(LANG_ENGLISH, SUBLANG_ENGLISH_US);
3222 return S_OK;
3225 /******************************************************************************
3226 * ICreateTypeLib2_SetLibFlags {OLEAUT32}
3228 * See ICreateTypeLib_SetLibFlags.
3230 static HRESULT WINAPI ICreateTypeLib2_fnSetLibFlags(ICreateTypeLib2 * iface, UINT uLibFlags)
3232 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3234 TRACE("(%p,0x%x)\n", iface, uLibFlags);
3236 This->typelib_header.flags = uLibFlags;
3238 return S_OK;
3241 static int ctl2_write_chunk(HANDLE hFile, const void *segment, int length)
3243 DWORD dwWritten;
3244 if (!WriteFile(hFile, segment, length, &dwWritten, 0)) {
3245 CloseHandle(hFile);
3246 return 0;
3248 return -1;
3251 static int ctl2_write_segment(ICreateTypeLib2Impl *This, HANDLE hFile, int segment)
3253 DWORD dwWritten;
3254 if (!WriteFile(hFile, This->typelib_segment_data[segment],
3255 This->typelib_segdir[segment].length, &dwWritten, 0)) {
3256 CloseHandle(hFile);
3257 return 0;
3260 return -1;
3263 static void ctl2_finalize_typeinfos(ICreateTypeLib2Impl *This, int filesize)
3265 ICreateTypeInfo2Impl *typeinfo;
3267 for (typeinfo = This->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
3268 typeinfo->typeinfo->memoffset = filesize;
3269 if (typeinfo->typedata) {
3270 ICreateTypeInfo2_fnLayOut((ICreateTypeInfo2 *)typeinfo);
3271 filesize += typeinfo->typedata[0] + ((typeinfo->typeinfo->cElement >> 16) * 12) + ((typeinfo->typeinfo->cElement & 0xffff) * 12) + 4;
3276 static int ctl2_finalize_segment(ICreateTypeLib2Impl *This, int filepos, int segment)
3278 if (This->typelib_segdir[segment].length) {
3279 This->typelib_segdir[segment].offset = filepos;
3280 } else {
3281 This->typelib_segdir[segment].offset = -1;
3284 return This->typelib_segdir[segment].length;
3287 static void ctl2_write_typeinfos(ICreateTypeLib2Impl *This, HANDLE hFile)
3289 ICreateTypeInfo2Impl *typeinfo;
3291 for (typeinfo = This->typeinfos; typeinfo; typeinfo = typeinfo->next_typeinfo) {
3292 if (!typeinfo->typedata) continue;
3294 ctl2_write_chunk(hFile, typeinfo->typedata, typeinfo->typedata[0] + 4);
3295 ctl2_write_chunk(hFile, typeinfo->indices, ((typeinfo->typeinfo->cElement & 0xffff) + (typeinfo->typeinfo->cElement >> 16)) * 4);
3296 ctl2_write_chunk(hFile, typeinfo->names, ((typeinfo->typeinfo->cElement & 0xffff) + (typeinfo->typeinfo->cElement >> 16)) * 4);
3297 ctl2_write_chunk(hFile, typeinfo->offsets, ((typeinfo->typeinfo->cElement & 0xffff) + (typeinfo->typeinfo->cElement >> 16)) * 4);
3301 /******************************************************************************
3302 * ICreateTypeLib2_SaveAllChanges {OLEAUT32}
3304 * See ICreateTypeLib_SaveAllChanges.
3306 static HRESULT WINAPI ICreateTypeLib2_fnSaveAllChanges(ICreateTypeLib2 * iface)
3308 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3310 int retval;
3311 int filepos;
3312 HANDLE hFile;
3314 TRACE("(%p)\n", iface);
3316 retval = TYPE_E_IOERROR;
3318 hFile = CreateFileW(This->filename, GENERIC_WRITE, 0, NULL, CREATE_ALWAYS, FILE_ATTRIBUTE_NORMAL, 0);
3319 if (hFile == INVALID_HANDLE_VALUE) return retval;
3321 filepos = sizeof(MSFT_Header) + sizeof(MSFT_SegDir);
3322 filepos += This->typelib_header.nrtypeinfos * 4;
3324 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_TYPEINFO);
3325 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_GUIDHASH);
3326 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_GUID);
3327 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_IMPORTINFO);
3328 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_IMPORTFILES);
3329 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_REFERENCES);
3330 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_NAMEHASH);
3331 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_NAME);
3332 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_STRING);
3333 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_TYPEDESC);
3334 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_ARRAYDESC);
3335 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_CUSTDATA);
3336 filepos += ctl2_finalize_segment(This, filepos, MSFT_SEG_CUSTDATAGUID);
3338 ctl2_finalize_typeinfos(This, filepos);
3340 if (!ctl2_write_chunk(hFile, &This->typelib_header, sizeof(This->typelib_header))) return retval;
3341 if (This->typelib_header.varflags & HELPDLLFLAG)
3342 if (!ctl2_write_chunk(hFile, &This->helpStringDll, sizeof(This->helpStringDll))) return retval;
3343 if (!ctl2_write_chunk(hFile, This->typelib_typeinfo_offsets, This->typelib_header.nrtypeinfos * 4)) return retval;
3344 if (!ctl2_write_chunk(hFile, This->typelib_segdir, sizeof(This->typelib_segdir))) return retval;
3345 if (!ctl2_write_segment(This, hFile, MSFT_SEG_TYPEINFO )) return retval;
3346 if (!ctl2_write_segment(This, hFile, MSFT_SEG_GUIDHASH )) return retval;
3347 if (!ctl2_write_segment(This, hFile, MSFT_SEG_GUID )) return retval;
3348 if (!ctl2_write_segment(This, hFile, MSFT_SEG_IMPORTINFO )) return retval;
3349 if (!ctl2_write_segment(This, hFile, MSFT_SEG_IMPORTFILES )) return retval;
3350 if (!ctl2_write_segment(This, hFile, MSFT_SEG_REFERENCES )) return retval;
3351 if (!ctl2_write_segment(This, hFile, MSFT_SEG_NAMEHASH )) return retval;
3352 if (!ctl2_write_segment(This, hFile, MSFT_SEG_NAME )) return retval;
3353 if (!ctl2_write_segment(This, hFile, MSFT_SEG_STRING )) return retval;
3354 if (!ctl2_write_segment(This, hFile, MSFT_SEG_TYPEDESC )) return retval;
3355 if (!ctl2_write_segment(This, hFile, MSFT_SEG_ARRAYDESC )) return retval;
3356 if (!ctl2_write_segment(This, hFile, MSFT_SEG_CUSTDATA )) return retval;
3357 if (!ctl2_write_segment(This, hFile, MSFT_SEG_CUSTDATAGUID)) return retval;
3359 ctl2_write_typeinfos(This, hFile);
3361 if (!CloseHandle(hFile)) return retval;
3363 retval = S_OK;
3364 return retval;
3368 /******************************************************************************
3369 * ICreateTypeLib2_DeleteTypeInfo {OLEAUT32}
3371 * Deletes a named TypeInfo from a type library.
3373 * RETURNS
3375 * Success: S_OK
3376 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3378 static HRESULT WINAPI ICreateTypeLib2_fnDeleteTypeInfo(
3379 ICreateTypeLib2 * iface, /* [I] The type library to delete from. */
3380 LPOLESTR szName) /* [I] The name of the typeinfo to delete. */
3382 FIXME("(%p,%s), stub!\n", iface, debugstr_w(szName));
3383 return E_OUTOFMEMORY;
3386 /******************************************************************************
3387 * ICreateTypeLib2_SetCustData {OLEAUT32}
3389 * Sets custom data for a type library.
3391 * RETURNS
3393 * Success: S_OK
3394 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3396 static HRESULT WINAPI ICreateTypeLib2_fnSetCustData(
3397 ICreateTypeLib2 * iface, /* [I] The type library to store the custom data in. */
3398 REFGUID guid, /* [I] The GUID used as a key to retrieve the custom data. */
3399 VARIANT *pVarVal) /* [I] The custom data itself. */
3401 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3403 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(guid), pVarVal);
3405 return ctl2_set_custdata(This, guid, pVarVal, &This->typelib_header.CustomDataOffset);
3408 /******************************************************************************
3409 * ICreateTypeLib2_SetHelpStringContext {OLEAUT32}
3411 * Sets a context number for the library help string.
3413 * PARAMS
3414 * iface [I] The type library to set the help string context for.
3415 * dwContext [I] The help string context.
3417 * RETURNS
3418 * Success: S_OK
3419 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3421 static
3422 HRESULT WINAPI ICreateTypeLib2_fnSetHelpStringContext(ICreateTypeLib2 * iface,
3423 ULONG dwContext)
3425 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3427 TRACE("(%p,%d)\n", iface, dwContext);
3429 This->typelib_header.helpstringcontext = dwContext;
3430 return S_OK;
3433 /******************************************************************************
3434 * ICreateTypeLib2_SetHelpStringDll {OLEAUT32}
3436 * Set the DLL used to look up localized help strings.
3438 * PARAMS
3439 * iface [I] The type library to set the help DLL for.
3440 * szDllName [I] The name of the help DLL.
3442 * RETURNS
3443 * Success: S_OK
3444 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3446 static
3447 HRESULT WINAPI ICreateTypeLib2_fnSetHelpStringDll(ICreateTypeLib2 * iface,
3448 LPOLESTR szDllName)
3450 ICreateTypeLib2Impl *This = (ICreateTypeLib2Impl *)iface;
3451 int offset;
3453 TRACE("(%p,%s)\n", iface, debugstr_w(szDllName));
3454 if (!szDllName)
3455 return E_INVALIDARG;
3457 offset = ctl2_alloc_string(This, szDllName);
3458 if (offset == -1)
3459 return E_OUTOFMEMORY;
3460 This->typelib_header.varflags |= HELPDLLFLAG;
3461 This->helpStringDll = offset;
3462 return S_OK;
3465 /*================== ITypeLib2 Implementation ===================================*/
3467 /******************************************************************************
3468 * ITypeLib2_QueryInterface {OLEAUT32}
3470 * See IUnknown_QueryInterface.
3472 static HRESULT WINAPI ITypeLib2_fnQueryInterface(ITypeLib2 * iface, REFIID riid, LPVOID * ppv)
3474 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3476 return ICreateTypeLib2_QueryInterface((ICreateTypeLib2 *)This, riid, ppv);
3479 /******************************************************************************
3480 * ITypeLib2_AddRef {OLEAUT32}
3482 * See IUnknown_AddRef.
3484 static ULONG WINAPI ITypeLib2_fnAddRef(ITypeLib2 * iface)
3486 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3488 return ICreateTypeLib2_AddRef((ICreateTypeLib2 *)This);
3491 /******************************************************************************
3492 * ITypeLib2_Release {OLEAUT32}
3494 * See IUnknown_Release.
3496 static ULONG WINAPI ITypeLib2_fnRelease(ITypeLib2 * iface)
3498 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3500 return ICreateTypeLib2_Release((ICreateTypeLib2 *)This);
3503 /******************************************************************************
3504 * ITypeLib2_GetTypeInfoCount {OLEAUT32}
3506 * See ITypeLib_GetTypeInfoCount.
3508 static UINT WINAPI ITypeLib2_fnGetTypeInfoCount(
3509 ITypeLib2 * iface)
3511 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3513 TRACE("(%p)\n", iface);
3515 return This->typelib_header.nrtypeinfos;
3518 /******************************************************************************
3519 * ITypeLib2_GetTypeInfo {OLEAUT32}
3521 * See ITypeLib_GetTypeInfo.
3523 static HRESULT WINAPI ITypeLib2_fnGetTypeInfo(
3524 ITypeLib2 * iface,
3525 UINT index,
3526 ITypeInfo** ppTInfo)
3528 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3530 TRACE("(%p,%d,%p)\n", iface, index, ppTInfo);
3532 if (index >= This->typelib_header.nrtypeinfos) {
3533 return TYPE_E_ELEMENTNOTFOUND;
3536 return ctl2_find_typeinfo_from_offset(This, This->typelib_typeinfo_offsets[index], ppTInfo);
3539 /******************************************************************************
3540 * ITypeLib2_GetTypeInfoType {OLEAUT32}
3542 * See ITypeLib_GetTypeInfoType.
3544 static HRESULT WINAPI ITypeLib2_fnGetTypeInfoType(
3545 ITypeLib2 * iface,
3546 UINT index,
3547 TYPEKIND* pTKind)
3549 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3551 TRACE("(%p,%d,%p)\n", iface, index, pTKind);
3553 if (index >= This->typelib_header.nrtypeinfos) {
3554 return TYPE_E_ELEMENTNOTFOUND;
3557 *pTKind = (This->typelib_segment_data[MSFT_SEG_TYPEINFO][This->typelib_typeinfo_offsets[index]]) & 15;
3559 return S_OK;
3562 /******************************************************************************
3563 * ITypeLib2_GetTypeInfoOfGuid {OLEAUT32}
3565 * See ITypeLib_GetTypeInfoOfGuid.
3567 static HRESULT WINAPI ITypeLib2_fnGetTypeInfoOfGuid(
3568 ITypeLib2 * iface,
3569 REFGUID guid,
3570 ITypeInfo** ppTinfo)
3572 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3574 int guidoffset;
3575 int typeinfo;
3577 TRACE("(%p,%s,%p)\n", iface, debugstr_guid(guid), ppTinfo);
3579 guidoffset = ctl2_find_guid(This, ctl2_hash_guid(guid), guid);
3580 if (guidoffset == -1) return TYPE_E_ELEMENTNOTFOUND;
3582 typeinfo = ((MSFT_GuidEntry *)&This->typelib_segment_data[MSFT_SEG_GUID][guidoffset])->hreftype;
3583 if (typeinfo < 0) return TYPE_E_ELEMENTNOTFOUND;
3585 return ctl2_find_typeinfo_from_offset(This, typeinfo, ppTinfo);
3588 /******************************************************************************
3589 * ITypeLib2_GetLibAttr {OLEAUT32}
3591 * See ITypeLib_GetLibAttr.
3593 static HRESULT WINAPI ITypeLib2_fnGetLibAttr(
3594 ITypeLib2 * iface,
3595 TLIBATTR** ppTLibAttr)
3597 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3599 FIXME("(%p,%p), stub!\n", This, ppTLibAttr);
3601 return E_OUTOFMEMORY;
3604 /******************************************************************************
3605 * ITypeLib2_GetTypeComp {OLEAUT32}
3607 * See ITypeLib_GetTypeComp.
3609 static HRESULT WINAPI ITypeLib2_fnGetTypeComp(
3610 ITypeLib2 * iface,
3611 ITypeComp** ppTComp)
3613 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3615 FIXME("(%p,%p), stub!\n", This, ppTComp);
3617 return E_OUTOFMEMORY;
3620 /******************************************************************************
3621 * ITypeLib2_GetDocumentation {OLEAUT32}
3623 * See ITypeLib_GetDocumentation.
3625 static HRESULT WINAPI ITypeLib2_fnGetDocumentation(
3626 ITypeLib2 * iface,
3627 INT index,
3628 BSTR* pBstrName,
3629 BSTR* pBstrDocString,
3630 DWORD* pdwHelpContext,
3631 BSTR* pBstrHelpFile)
3633 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3635 FIXME("(%p,%d,%p,%p,%p,%p), stub!\n", This, index, pBstrName, pBstrDocString, pdwHelpContext, pBstrHelpFile);
3637 return E_OUTOFMEMORY;
3640 /******************************************************************************
3641 * ITypeLib2_IsName {OLEAUT32}
3643 * See ITypeLib_IsName.
3645 static HRESULT WINAPI ITypeLib2_fnIsName(
3646 ITypeLib2 * iface,
3647 LPOLESTR szNameBuf,
3648 ULONG lHashVal,
3649 BOOL* pfName)
3651 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3653 char *encoded_name;
3654 int nameoffset;
3655 MSFT_NameIntro *nameintro;
3657 TRACE("(%p,%s,%x,%p)\n", iface, debugstr_w(szNameBuf), lHashVal, pfName);
3659 ctl2_encode_name(This, szNameBuf, &encoded_name);
3660 nameoffset = ctl2_find_name(This, encoded_name);
3662 *pfName = 0;
3664 if (nameoffset == -1) return S_OK;
3666 nameintro = (MSFT_NameIntro *)(&This->typelib_segment_data[MSFT_SEG_NAME][nameoffset]);
3667 if (nameintro->hreftype == -1) return S_OK;
3669 *pfName = 1;
3671 FIXME("Should be decoding our copy of the name over szNameBuf.\n");
3673 return S_OK;
3676 /******************************************************************************
3677 * ITypeLib2_FindName {OLEAUT32}
3679 * See ITypeLib_FindName.
3681 static HRESULT WINAPI ITypeLib2_fnFindName(
3682 ITypeLib2 * iface,
3683 LPOLESTR szNameBuf,
3684 ULONG lHashVal,
3685 ITypeInfo** ppTInfo,
3686 MEMBERID* rgMemId,
3687 USHORT* pcFound)
3689 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3691 FIXME("(%p,%s,%x,%p,%p,%p), stub!\n", This, debugstr_w(szNameBuf), lHashVal, ppTInfo, rgMemId, pcFound);
3693 return E_OUTOFMEMORY;
3696 /******************************************************************************
3697 * ITypeLib2_ReleaseTLibAttr {OLEAUT32}
3699 * See ITypeLib_ReleaseTLibAttr.
3701 static void WINAPI ITypeLib2_fnReleaseTLibAttr(
3702 ITypeLib2 * iface,
3703 TLIBATTR* pTLibAttr)
3705 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3707 FIXME("(%p,%p), stub!\n", This, pTLibAttr);
3710 /******************************************************************************
3711 * ICreateTypeLib2_GetCustData {OLEAUT32}
3713 * Retrieves a custom data value stored on a type library.
3715 * RETURNS
3717 * Success: S_OK
3718 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3720 static HRESULT WINAPI ITypeLib2_fnGetCustData(
3721 ITypeLib2 * iface, /* [I] The type library in which to find the custom data. */
3722 REFGUID guid, /* [I] The GUID under which the custom data is stored. */
3723 VARIANT* pVarVal) /* [O] The custom data. */
3725 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3727 FIXME("(%p,%s,%p), stub!\n", This, debugstr_guid(guid), pVarVal);
3729 return E_OUTOFMEMORY;
3732 /******************************************************************************
3733 * ICreateTypeLib2_GetLibStatistics {OLEAUT32}
3735 * Retrieves some statistics about names in a type library, supposedly for
3736 * hash table optimization purposes.
3738 * RETURNS
3740 * Success: S_OK
3741 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3743 static HRESULT WINAPI ITypeLib2_fnGetLibStatistics(
3744 ITypeLib2 * iface, /* [I] The type library to get statistics about. */
3745 ULONG* pcUniqueNames, /* [O] The number of unique names in the type library. */
3746 ULONG* pcchUniqueNames) /* [O] The number of changed (?) characters in names in the type library. */
3748 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3750 FIXME("(%p,%p,%p), stub!\n", This, pcUniqueNames, pcchUniqueNames);
3752 return E_OUTOFMEMORY;
3755 /******************************************************************************
3756 * ICreateTypeLib2_GetDocumentation2 {OLEAUT32}
3758 * Obtain locale-aware help string information.
3760 * RETURNS
3762 * Success: S_OK
3763 * Failure: STG_E_INSUFFICIENTMEMORY or E_INVALIDARG.
3765 static HRESULT WINAPI ITypeLib2_fnGetDocumentation2(
3766 ITypeLib2 * iface,
3767 INT index,
3768 LCID lcid,
3769 BSTR* pbstrHelpString,
3770 DWORD* pdwHelpStringContext,
3771 BSTR* pbstrHelpStringDll)
3773 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3775 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", This, index, lcid, pbstrHelpString, pdwHelpStringContext, pbstrHelpStringDll);
3777 return E_OUTOFMEMORY;
3780 /******************************************************************************
3781 * ICreateTypeLib2_GetAllCustData {OLEAUT32}
3783 * Retrieve all of the custom data for a type library.
3785 * RETURNS
3787 * Success: S_OK
3788 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
3790 static HRESULT WINAPI ITypeLib2_fnGetAllCustData(
3791 ITypeLib2 * iface, /* [I] The type library in which to find the custom data. */
3792 CUSTDATA* pCustData) /* [O] The structure in which to place the custom data. */
3794 ICreateTypeLib2Impl *This = impl_from_ITypeLib2(iface);
3796 FIXME("(%p,%p), stub!\n", This, pCustData);
3798 return E_OUTOFMEMORY;
3802 /*================== ICreateTypeLib2 & ITypeLib2 VTABLEs And Creation ===================================*/
3804 static const ICreateTypeLib2Vtbl ctypelib2vt =
3807 ICreateTypeLib2_fnQueryInterface,
3808 ICreateTypeLib2_fnAddRef,
3809 ICreateTypeLib2_fnRelease,
3811 ICreateTypeLib2_fnCreateTypeInfo,
3812 ICreateTypeLib2_fnSetName,
3813 ICreateTypeLib2_fnSetVersion,
3814 ICreateTypeLib2_fnSetGuid,
3815 ICreateTypeLib2_fnSetDocString,
3816 ICreateTypeLib2_fnSetHelpFileName,
3817 ICreateTypeLib2_fnSetHelpContext,
3818 ICreateTypeLib2_fnSetLcid,
3819 ICreateTypeLib2_fnSetLibFlags,
3820 ICreateTypeLib2_fnSaveAllChanges,
3822 ICreateTypeLib2_fnDeleteTypeInfo,
3823 ICreateTypeLib2_fnSetCustData,
3824 ICreateTypeLib2_fnSetHelpStringContext,
3825 ICreateTypeLib2_fnSetHelpStringDll
3828 static const ITypeLib2Vtbl typelib2vt =
3831 ITypeLib2_fnQueryInterface,
3832 ITypeLib2_fnAddRef,
3833 ITypeLib2_fnRelease,
3835 ITypeLib2_fnGetTypeInfoCount,
3836 ITypeLib2_fnGetTypeInfo,
3837 ITypeLib2_fnGetTypeInfoType,
3838 ITypeLib2_fnGetTypeInfoOfGuid,
3839 ITypeLib2_fnGetLibAttr,
3840 ITypeLib2_fnGetTypeComp,
3841 ITypeLib2_fnGetDocumentation,
3842 ITypeLib2_fnIsName,
3843 ITypeLib2_fnFindName,
3844 ITypeLib2_fnReleaseTLibAttr,
3846 ITypeLib2_fnGetCustData,
3847 ITypeLib2_fnGetLibStatistics,
3848 ITypeLib2_fnGetDocumentation2,
3849 ITypeLib2_fnGetAllCustData,
3852 static ICreateTypeLib2 *ICreateTypeLib2_Constructor(SYSKIND syskind, LPCOLESTR szFile)
3854 ICreateTypeLib2Impl *pCreateTypeLib2Impl;
3855 int failed = 0;
3857 TRACE("Constructing ICreateTypeLib2 (%d, %s)\n", syskind, debugstr_w(szFile));
3859 pCreateTypeLib2Impl = HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY,sizeof(ICreateTypeLib2Impl));
3860 if (!pCreateTypeLib2Impl) return NULL;
3862 pCreateTypeLib2Impl->filename = HeapAlloc(GetProcessHeap(), 0, (strlenW(szFile) + 1) * sizeof(WCHAR));
3863 if (!pCreateTypeLib2Impl->filename) {
3864 HeapFree(GetProcessHeap(), 0, pCreateTypeLib2Impl);
3865 return NULL;
3867 strcpyW(pCreateTypeLib2Impl->filename, szFile);
3869 ctl2_init_header(pCreateTypeLib2Impl);
3870 ctl2_init_segdir(pCreateTypeLib2Impl);
3872 pCreateTypeLib2Impl->typelib_header.varflags |= syskind;
3875 * The following two calls return an offset or -1 if out of memory. We
3876 * specifically need an offset of 0, however, so...
3878 if (ctl2_alloc_segment(pCreateTypeLib2Impl, MSFT_SEG_GUIDHASH, 0x80, 0x80)) { failed = 1; }
3879 if (ctl2_alloc_segment(pCreateTypeLib2Impl, MSFT_SEG_NAMEHASH, 0x200, 0x200)) { failed = 1; }
3881 pCreateTypeLib2Impl->typelib_guidhash_segment = (int *)pCreateTypeLib2Impl->typelib_segment_data[MSFT_SEG_GUIDHASH];
3882 pCreateTypeLib2Impl->typelib_namehash_segment = (int *)pCreateTypeLib2Impl->typelib_segment_data[MSFT_SEG_NAMEHASH];
3884 memset(pCreateTypeLib2Impl->typelib_guidhash_segment, 0xff, 0x80);
3885 memset(pCreateTypeLib2Impl->typelib_namehash_segment, 0xff, 0x200);
3887 pCreateTypeLib2Impl->lpVtbl = &ctypelib2vt;
3888 pCreateTypeLib2Impl->lpVtblTypeLib2 = &typelib2vt;
3889 pCreateTypeLib2Impl->ref = 1;
3891 if (failed) {
3892 ICreateTypeLib2_fnRelease((ICreateTypeLib2 *)pCreateTypeLib2Impl);
3893 return 0;
3896 return (ICreateTypeLib2 *)pCreateTypeLib2Impl;
3899 /******************************************************************************
3900 * CreateTypeLib2 [OLEAUT32.180]
3902 * Obtains an ICreateTypeLib2 object for creating a new-style (MSFT) type
3903 * library.
3905 * NOTES
3907 * See also CreateTypeLib.
3909 * RETURNS
3910 * Success: S_OK
3911 * Failure: Status
3913 HRESULT WINAPI CreateTypeLib2(
3914 SYSKIND syskind, /* [I] System type library is for */
3915 LPCOLESTR szFile, /* [I] Type library file name */
3916 ICreateTypeLib2** ppctlib) /* [O] Storage for object returned */
3918 TRACE("(%d,%s,%p)\n", syskind, debugstr_w(szFile), ppctlib);
3920 if (!szFile) return E_INVALIDARG;
3921 *ppctlib = ICreateTypeLib2_Constructor(syskind, szFile);
3922 return (*ppctlib)? S_OK: E_OUTOFMEMORY;
3925 /******************************************************************************
3926 * ClearCustData (OLEAUT32.171)
3928 * Clear a custom data types' data.
3930 * PARAMS
3931 * lpCust [I] The custom data type instance
3933 * RETURNS
3934 * Nothing.
3936 void WINAPI ClearCustData(LPCUSTDATA lpCust)
3938 if (lpCust && lpCust->cCustData)
3940 if (lpCust->prgCustData)
3942 DWORD i;
3944 for (i = 0; i < lpCust->cCustData; i++)
3945 VariantClear(&lpCust->prgCustData[i].varValue);
3947 /* FIXME - Should be using a per-thread IMalloc */
3948 HeapFree(GetProcessHeap(), 0, lpCust->prgCustData);
3949 lpCust->prgCustData = NULL;
3951 lpCust->cCustData = 0;