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 * --------------------------------------------------------------------------------------
25 * Only works on little-endian systems.
30 #include "wine/port.h"
39 #define NONAMELESSUNION
40 #define NONAMELESSSTRUCT
49 #include "wine/unicode.h"
52 #include "wine/debug.h"
54 WINE_DEFAULT_DEBUG_CHANNEL(typelib2
);
55 /* WINE_DEFAULT_DEBUG_CHANNEL(ole); */
58 /******************************************************************************
59 * ICreateTypeLib2 {OLEAUT32}
62 * The ICreateTypeLib2 interface provides an interface whereby one may create
63 * new type library (.tlb) files.
65 * This interface inherits from ICreateTypeLib, and can be freely cast back
66 * and forth between an ICreateTypeLib and an ICreateTypeLib2 on local clients.
67 * This dispensation applies only to ICreateTypeLib objects obtained on MSFT
68 * format type libraries (those made through CreateTypeLib2).
73 /******************************************************************************
74 * ICreateTypeInfo2 {OLEAUT32}
77 * The ICreateTypeInfo2 interface provides an interface whereby one may add
78 * type information to type library (.tlb) files.
80 * This interface inherits from ICreateTypeInfo, and can be freely cast back
81 * and forth between an ICreateTypeInfo and an ICreateTypeInfo2 on local clients.
82 * This dispensation applies only to ICreateTypeInfo objects obtained on MSFT
83 * format type libraries (those made through CreateTypeLib2).
88 /******************************************************************************
89 * ITypeLib2 {OLEAUT32}
92 * The ITypeLib2 interface provides an interface whereby one may query MSFT
93 * format type library (.tlb) files.
95 * This interface inherits from ITypeLib, and can be freely cast back and
96 * forth between an ITypeLib and an ITypeLib2 on local clients. This
97 * dispensation applies only to ITypeLib objects obtained on MSFT format type
98 * libraries (those made through CreateTypeLib2).
103 /******************************************************************************
104 * ITypeInfo2 {OLEAUT32}
107 * The ITypeInfo2 interface provides an interface whereby one may query type
108 * information stored in MSFT format type library (.tlb) files.
110 * This interface inherits from ITypeInfo, and can be freely cast back and
111 * forth between an ITypeInfo and an ITypeInfo2 on local clients. This
112 * dispensation applies only to ITypeInfo objects obtained on MSFT format type
113 * libraries (those made through CreateTypeLib2).
118 /*================== Implementation Structures ===================================*/
120 /* Used for storing cyclic list. Tail address is kept */
121 typedef enum tagCyclicListElementType
{
125 } CyclicListElementType
;
126 typedef struct tagCyclicList
{
127 struct tagCyclicList
*next
;
130 CyclicListElementType type
;
138 enum MSFT_segment_index
{
139 MSFT_SEG_TYPEINFO
= 0, /* type information */
140 MSFT_SEG_IMPORTINFO
, /* import information */
141 MSFT_SEG_IMPORTFILES
, /* import filenames */
142 MSFT_SEG_REFERENCES
, /* references (?) */
143 MSFT_SEG_GUIDHASH
, /* hash table for guids? */
144 MSFT_SEG_GUID
, /* guid storage */
145 MSFT_SEG_NAMEHASH
, /* hash table for names */
146 MSFT_SEG_NAME
, /* name storage */
147 MSFT_SEG_STRING
, /* string storage */
148 MSFT_SEG_TYPEDESC
, /* type descriptions */
149 MSFT_SEG_ARRAYDESC
, /* array descriptions */
150 MSFT_SEG_CUSTDATA
, /* custom data */
151 MSFT_SEG_CUSTDATAGUID
, /* custom data guids */
152 MSFT_SEG_UNKNOWN
, /* ??? */
153 MSFT_SEG_UNKNOWN2
, /* ??? */
154 MSFT_SEG_MAX
/* total number of segments */
157 typedef struct tagMSFT_ImpFile
{
161 char filename
[0]; /* preceded by two bytes of encoded (length << 2) + flags in the low two bits. */
164 typedef struct tagICreateTypeLib2Impl
166 const ICreateTypeLib2Vtbl
*lpVtbl
;
167 const ITypeLib2Vtbl
*lpVtblTypeLib2
;
173 MSFT_Header typelib_header
;
175 MSFT_pSeg typelib_segdir
[MSFT_SEG_MAX
];
176 char *typelib_segment_data
[MSFT_SEG_MAX
];
177 int typelib_segment_block_length
[MSFT_SEG_MAX
];
179 int typelib_guids
; /* Number of defined typelib guids */
180 int typeinfo_guids
; /* Number of defined typeinfo guids */
182 INT typelib_typeinfo_offsets
[0x200]; /* Hope that's enough. */
184 INT
*typelib_namehash_segment
;
185 INT
*typelib_guidhash_segment
;
187 struct tagICreateTypeInfo2Impl
*typeinfos
;
188 struct tagICreateTypeInfo2Impl
*last_typeinfo
;
189 } ICreateTypeLib2Impl
;
191 static inline ICreateTypeLib2Impl
*impl_from_ITypeLib2( ITypeLib2
*iface
)
193 return (ICreateTypeLib2Impl
*)((char*)iface
- FIELD_OFFSET(ICreateTypeLib2Impl
, lpVtblTypeLib2
));
196 typedef struct tagICreateTypeInfo2Impl
198 const ICreateTypeInfo2Vtbl
*lpVtbl
;
199 const ITypeInfo2Vtbl
*lpVtblTypeInfo2
;
203 ICreateTypeLib2Impl
*typelib
;
204 MSFT_TypeInfoBase
*typeinfo
;
206 struct tagCyclicList
*typedata
; /* tail of cyclic list */
211 struct tagICreateTypeInfo2Impl
*next_typeinfo
;
212 struct tagICreateTypeInfo2Impl
*dual
;
213 } ICreateTypeInfo2Impl
;
215 static inline ICreateTypeInfo2Impl
*impl_from_ITypeInfo2( ITypeInfo2
*iface
)
217 return (ICreateTypeInfo2Impl
*)((char*)iface
- FIELD_OFFSET(ICreateTypeInfo2Impl
, lpVtblTypeInfo2
));
220 static ULONG WINAPI
ICreateTypeLib2_fnRelease(ICreateTypeLib2
*iface
);
222 static CyclicList
*alloc_cyclic_list_item(CyclicListElementType type
)
224 CyclicList
*ret
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(CyclicList
));
231 /*================== Internal functions ===================================*/
233 /****************************************************************************
236 * Initializes the type library header of a new typelib.
238 static void ctl2_init_header(
239 ICreateTypeLib2Impl
*This
) /* [I] The typelib to initialize. */
241 This
->typelib_header
.magic1
= 0x5446534d;
242 This
->typelib_header
.magic2
= 0x00010002;
243 This
->typelib_header
.posguid
= -1;
244 This
->typelib_header
.lcid
= This
->typelib_header
.lcid2
= GetUserDefaultLCID();
245 This
->typelib_header
.varflags
= 0x40;
246 This
->typelib_header
.version
= 0;
247 This
->typelib_header
.flags
= 0;
248 This
->typelib_header
.nrtypeinfos
= 0;
249 This
->typelib_header
.helpstring
= -1;
250 This
->typelib_header
.helpstringcontext
= 0;
251 This
->typelib_header
.helpcontext
= 0;
252 This
->typelib_header
.nametablecount
= 0;
253 This
->typelib_header
.nametablechars
= 0;
254 This
->typelib_header
.NameOffset
= -1;
255 This
->typelib_header
.helpfile
= -1;
256 This
->typelib_header
.CustomDataOffset
= -1;
257 This
->typelib_header
.res44
= 0x20;
258 This
->typelib_header
.res48
= 0x80;
259 This
->typelib_header
.dispatchpos
= -1;
260 This
->typelib_header
.nimpinfos
= 0;
261 This
->helpStringDll
= -1;
264 /****************************************************************************
267 * Initializes the segment directory of a new typelib.
269 static void ctl2_init_segdir(
270 ICreateTypeLib2Impl
*This
) /* [I] The typelib to initialize. */
275 segdir
= &This
->typelib_segdir
[MSFT_SEG_TYPEINFO
];
277 for (i
= 0; i
< 15; i
++) {
278 segdir
[i
].offset
= -1;
279 segdir
[i
].length
= 0;
280 segdir
[i
].res08
= -1;
281 segdir
[i
].res0c
= 0x0f;
285 /****************************************************************************
288 * Generates a hash key from a GUID.
292 * The hash key for the GUID.
294 static int ctl2_hash_guid(
295 REFGUID guid
) /* [I] The guid to find. */
301 for (i
= 0; i
< 8; i
++) {
302 hash
^= ((const short *)guid
)[i
];
308 /****************************************************************************
311 * Locates a guid in a type library.
315 * The offset into the GUID segment of the guid, or -1 if not found.
317 static int ctl2_find_guid(
318 ICreateTypeLib2Impl
*This
, /* [I] The typelib to operate against. */
319 int hash_key
, /* [I] The hash key for the guid. */
320 REFGUID guid
) /* [I] The guid to find. */
323 MSFT_GuidEntry
*guidentry
;
325 offset
= This
->typelib_guidhash_segment
[hash_key
];
326 while (offset
!= -1) {
327 guidentry
= (MSFT_GuidEntry
*)&This
->typelib_segment_data
[MSFT_SEG_GUID
][offset
];
329 if (IsEqualGUID(guidentry
, guid
)) return offset
;
331 offset
= guidentry
->next_hash
;
337 /****************************************************************************
340 * Locates a name in a type library.
344 * The offset into the NAME segment of the name, or -1 if not found.
348 * The name must be encoded as with ctl2_encode_name().
350 static int ctl2_find_name(
351 ICreateTypeLib2Impl
*This
, /* [I] The typelib to operate against. */
352 const char *name
) /* [I] The encoded name to find. */
357 offset
= This
->typelib_namehash_segment
[name
[2] & 0x7f];
358 while (offset
!= -1) {
359 namestruct
= (int *)&This
->typelib_segment_data
[MSFT_SEG_NAME
][offset
];
361 if (!((namestruct
[2] ^ *((const int *)name
)) & 0xffff00ff)) {
362 /* hash codes and lengths match, final test */
363 if (!strncasecmp(name
+4, (void *)(namestruct
+3), name
[0])) break;
366 /* move to next item in hash bucket */
367 offset
= namestruct
[1];
373 /****************************************************************************
376 * Encodes a name string to a form suitable for storing into a type library
377 * or comparing to a name stored in a type library.
381 * The length of the encoded name, including padding and length+hash fields.
385 * Will throw an exception if name or result are NULL. Is not multithread
386 * safe in the slightest.
388 static int ctl2_encode_name(
389 ICreateTypeLib2Impl
*This
, /* [I] The typelib to operate against (used for LCID only). */
390 const WCHAR
*name
, /* [I] The name string to encode. */
391 char **result
) /* [O] A pointer to a pointer to receive the encoded name. */
394 static char converted_name
[0x104];
398 length
= WideCharToMultiByte(CP_ACP
, 0, name
, strlenW(name
), converted_name
+4, 0x100, NULL
, NULL
);
399 converted_name
[0] = length
& 0xff;
401 converted_name
[length
+ 4] = 0;
403 converted_name
[1] = 0x00;
405 value
= LHashValOfNameSysA(This
->typelib_header
.varflags
& 0x0f, This
->typelib_header
.lcid
, converted_name
+ 4);
407 converted_name
[2] = value
;
408 converted_name
[3] = value
>> 8;
410 for (offset
= (4 - length
) & 3; offset
; offset
--) converted_name
[length
+ offset
+ 3] = 0x57;
412 *result
= converted_name
;
414 return (length
+ 7) & ~3;
417 /****************************************************************************
420 * Converts string stored in typelib data to unicode.
422 static void ctl2_decode_name(
423 char *data
, /* [I] String to be decoded */
424 WCHAR
**string
) /* [O] Decoded string */
427 static WCHAR converted_string
[0x104];
431 for(i
=0; i
<length
; i
++)
432 converted_string
[i
] = data
[i
+4];
433 converted_string
[length
] = '\0';
435 *string
= converted_string
;
438 /****************************************************************************
441 * Encodes a string to a form suitable for storing into a type library or
442 * comparing to a string stored in a type library.
446 * The length of the encoded string, including padding and length fields.
450 * Will throw an exception if string or result are NULL. Is not multithread
451 * safe in the slightest.
453 static int ctl2_encode_string(
454 ICreateTypeLib2Impl
*This
, /* [I] The typelib to operate against (not used?). */
455 const WCHAR
*string
, /* [I] The string to encode. */
456 char **result
) /* [O] A pointer to a pointer to receive the encoded string. */
459 static char converted_string
[0x104];
462 length
= WideCharToMultiByte(CP_ACP
, 0, string
, strlenW(string
), converted_string
+2, 0x102, NULL
, NULL
);
463 converted_string
[0] = length
& 0xff;
464 converted_string
[1] = (length
>> 8) & 0xff;
466 for (offset
= (4 - (length
+ 2)) & 3; offset
; offset
--) converted_string
[length
+ offset
+ 1] = 0x57;
468 *result
= converted_string
;
470 return (length
+ 5) & ~3;
473 /****************************************************************************
476 * Converts string stored in typelib data to unicode.
478 static void ctl2_decode_string(
479 char *data
, /* [I] String to be decoded */
480 WCHAR
**string
) /* [O] Decoded string */
483 static WCHAR converted_string
[0x104];
485 length
= data
[0] + (data
[1]<<8);
486 if((length
&0x3) == 1)
489 for(i
=0; i
<length
; i
++)
490 converted_string
[i
] = data
[i
+2];
491 converted_string
[length
] = '\0';
493 *string
= converted_string
;
496 /****************************************************************************
499 * Allocates memory from a segment in a type library.
503 * Success: The offset within the segment of the new data area.
504 * Failure: -1 (this is invariably an out of memory condition).
508 * Does not (yet) handle the case where the allocated segment memory needs to grow.
510 static int ctl2_alloc_segment(
511 ICreateTypeLib2Impl
*This
, /* [I] The type library in which to allocate. */
512 enum MSFT_segment_index segment
, /* [I] The segment in which to allocate. */
513 int size
, /* [I] The amount to allocate. */
514 int block_size
) /* [I] Initial allocation block size, or 0 for default. */
518 if(!This
->typelib_segment_data
[segment
]) {
519 if (!block_size
) block_size
= 0x2000;
521 This
->typelib_segment_block_length
[segment
] = block_size
;
522 This
->typelib_segment_data
[segment
] = HeapAlloc(GetProcessHeap(), 0, block_size
);
523 if (!This
->typelib_segment_data
[segment
]) return -1;
524 memset(This
->typelib_segment_data
[segment
], 0x57, block_size
);
527 while ((This
->typelib_segdir
[segment
].length
+ size
) > This
->typelib_segment_block_length
[segment
]) {
530 block_size
= This
->typelib_segment_block_length
[segment
];
531 block
= HeapReAlloc(GetProcessHeap(), 0, This
->typelib_segment_data
[segment
], block_size
<< 1);
532 if (!block
) return -1;
534 if (segment
== MSFT_SEG_TYPEINFO
) {
535 /* TypeInfos have a direct pointer to their memory space, so we have to fix them up. */
536 ICreateTypeInfo2Impl
*typeinfo
;
538 for (typeinfo
= This
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
539 typeinfo
->typeinfo
= (void *)&block
[((char *)typeinfo
->typeinfo
) - This
->typelib_segment_data
[segment
]];
543 memset(block
+ block_size
, 0x57, block_size
);
544 This
->typelib_segment_block_length
[segment
] = block_size
<< 1;
545 This
->typelib_segment_data
[segment
] = block
;
548 offset
= This
->typelib_segdir
[segment
].length
;
549 This
->typelib_segdir
[segment
].length
+= size
;
554 /****************************************************************************
555 * ctl2_alloc_typeinfo
557 * Allocates and initializes a typeinfo structure in a type library.
561 * Success: The offset of the new typeinfo.
562 * Failure: -1 (this is invariably an out of memory condition).
564 static int ctl2_alloc_typeinfo(
565 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
566 int nameoffset
) /* [I] The offset of the name for this typeinfo. */
569 MSFT_TypeInfoBase
*typeinfo
;
571 offset
= ctl2_alloc_segment(This
, MSFT_SEG_TYPEINFO
, sizeof(MSFT_TypeInfoBase
), 0);
572 if (offset
== -1) return -1;
574 This
->typelib_typeinfo_offsets
[This
->typelib_header
.nrtypeinfos
++] = offset
;
576 typeinfo
= (void *)(This
->typelib_segment_data
[MSFT_SEG_TYPEINFO
] + offset
);
578 typeinfo
->typekind
= (This
->typelib_header
.nrtypeinfos
- 1) << 16;
579 typeinfo
->memoffset
= -1; /* should be EOF if no elements */
584 typeinfo
->cElement
= 0;
589 typeinfo
->posguid
= -1;
591 typeinfo
->NameOffset
= nameoffset
;
592 typeinfo
->version
= 0;
593 typeinfo
->docstringoffs
= -1;
594 typeinfo
->helpstringcontext
= 0;
595 typeinfo
->helpcontext
= 0;
596 typeinfo
->oCustData
= -1;
597 typeinfo
->cbSizeVft
= 0;
598 typeinfo
->cImplTypes
= 0;
600 typeinfo
->datatype1
= -1;
601 typeinfo
->datatype2
= 0;
603 typeinfo
->res19
= -1;
608 /****************************************************************************
611 * Allocates and initializes a GUID structure in a type library. Also updates
612 * the GUID hash table as needed.
616 * Success: The offset of the new GUID.
617 * Failure: -1 (this is invariably an out of memory condition).
619 static int ctl2_alloc_guid(
620 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
621 MSFT_GuidEntry
*guid
) /* [I] The GUID to store. */
624 MSFT_GuidEntry
*guid_space
;
627 hash_key
= ctl2_hash_guid(&guid
->guid
);
629 offset
= ctl2_find_guid(This
, hash_key
, &guid
->guid
);
630 if (offset
!= -1) return offset
;
632 offset
= ctl2_alloc_segment(This
, MSFT_SEG_GUID
, sizeof(MSFT_GuidEntry
), 0);
633 if (offset
== -1) return -1;
635 guid_space
= (void *)(This
->typelib_segment_data
[MSFT_SEG_GUID
] + offset
);
638 guid_space
->next_hash
= This
->typelib_guidhash_segment
[hash_key
];
639 This
->typelib_guidhash_segment
[hash_key
] = offset
;
644 /****************************************************************************
647 * Allocates and initializes a name within a type library. Also updates the
648 * name hash table as needed.
652 * Success: The offset within the segment of the new name.
653 * Failure: -1 (this is invariably an out of memory condition).
655 static int ctl2_alloc_name(
656 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
657 const WCHAR
*name
) /* [I] The name to store. */
661 MSFT_NameIntro
*name_space
;
664 length
= ctl2_encode_name(This
, name
, &encoded_name
);
666 offset
= ctl2_find_name(This
, encoded_name
);
667 if (offset
!= -1) return offset
;
669 offset
= ctl2_alloc_segment(This
, MSFT_SEG_NAME
, length
+ 8, 0);
670 if (offset
== -1) return -1;
672 name_space
= (void *)(This
->typelib_segment_data
[MSFT_SEG_NAME
] + offset
);
673 name_space
->hreftype
= -1;
674 name_space
->next_hash
= -1;
675 memcpy(&name_space
->namelen
, encoded_name
, length
);
677 if (This
->typelib_namehash_segment
[encoded_name
[2] & 0x7f] != -1)
678 name_space
->next_hash
= This
->typelib_namehash_segment
[encoded_name
[2] & 0x7f];
680 This
->typelib_namehash_segment
[encoded_name
[2] & 0x7f] = offset
;
682 This
->typelib_header
.nametablecount
+= 1;
683 This
->typelib_header
.nametablechars
+= *encoded_name
;
688 /****************************************************************************
691 * Allocates and initializes a string in a type library.
695 * Success: The offset within the segment of the new string.
696 * Failure: -1 (this is invariably an out of memory condition).
698 static int ctl2_alloc_string(
699 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
700 const WCHAR
*string
) /* [I] The string to store. */
705 char *encoded_string
;
707 length
= ctl2_encode_string(This
, string
, &encoded_string
);
709 for (offset
= 0; offset
< This
->typelib_segdir
[MSFT_SEG_STRING
].length
;
710 offset
+= ((((This
->typelib_segment_data
[MSFT_SEG_STRING
][offset
+ 1] << 8) & 0xff)
711 | (This
->typelib_segment_data
[MSFT_SEG_STRING
][offset
+ 0] & 0xff)) + 5) & ~3) {
712 if (!memcmp(encoded_string
, This
->typelib_segment_data
[MSFT_SEG_STRING
] + offset
, length
)) return offset
;
715 offset
= ctl2_alloc_segment(This
, MSFT_SEG_STRING
, length
, 0);
716 if (offset
== -1) return -1;
718 string_space
= This
->typelib_segment_data
[MSFT_SEG_STRING
] + offset
;
719 memcpy(string_space
, encoded_string
, length
);
724 /****************************************************************************
725 * ctl2_alloc_importinfo
727 * Allocates and initializes an import information structure in a type library.
731 * Success: The offset of the new importinfo.
732 * Failure: -1 (this is invariably an out of memory condition).
734 static int ctl2_alloc_importinfo(
735 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
736 MSFT_ImpInfo
*impinfo
) /* [I] The import information to store. */
739 MSFT_ImpInfo
*impinfo_space
;
741 impinfo_space
= (MSFT_ImpInfo
*)&This
->typelib_segment_data
[MSFT_SEG_IMPORTINFO
][0];
742 for (offset
=0; offset
<This
->typelib_segdir
[MSFT_SEG_IMPORTINFO
].length
;
743 offset
+=sizeof(MSFT_ImpInfo
)) {
744 if(impinfo_space
->oImpFile
== impinfo
->oImpFile
745 && impinfo_space
->oGuid
== impinfo
->oGuid
)
751 impinfo
->flags
|= This
->typelib_header
.nimpinfos
++;
753 offset
= ctl2_alloc_segment(This
, MSFT_SEG_IMPORTINFO
, sizeof(MSFT_ImpInfo
), 0);
754 if (offset
== -1) return -1;
756 impinfo_space
= (void *)(This
->typelib_segment_data
[MSFT_SEG_IMPORTINFO
] + offset
);
757 *impinfo_space
= *impinfo
;
762 /****************************************************************************
763 * ctl2_alloc_importfile
765 * Allocates and initializes an import file definition in a type library.
769 * Success: The offset of the new importinfo.
770 * Failure: -1 (this is invariably an out of memory condition).
772 static int ctl2_alloc_importfile(
773 ICreateTypeLib2Impl
*This
, /* [I] The type library to allocate in. */
774 int guidoffset
, /* [I] The offset to the GUID for the imported library. */
775 LCID lcid
, /* [I] The LCID of imported library. */
776 int major_version
, /* [I] The major version number of the imported library. */
777 int minor_version
, /* [I] The minor version number of the imported library. */
778 const WCHAR
*filename
) /* [I] The filename of the imported library. */
782 MSFT_ImpFile
*importfile
;
783 char *encoded_string
;
785 length
= ctl2_encode_string(This
, filename
, &encoded_string
);
787 encoded_string
[0] <<= 2;
788 encoded_string
[0] |= 1;
790 for (offset
= 0; offset
< This
->typelib_segdir
[MSFT_SEG_IMPORTFILES
].length
;
791 offset
+= ((((((This
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
+ 0xd] << 8) & 0xff00)
792 | (This
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
+ 0xc] & 0xff)) >> 2) + 5) & 0xfffc) + 0xc) {
793 if (!memcmp(encoded_string
, This
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
] + offset
+ 0xc, length
)) return offset
;
796 offset
= ctl2_alloc_segment(This
, MSFT_SEG_IMPORTFILES
, length
+ 0xc, 0);
797 if (offset
== -1) return -1;
799 importfile
= (MSFT_ImpFile
*)&This
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][offset
];
800 importfile
->guid
= guidoffset
;
801 importfile
->lcid
= lcid
;
802 importfile
->version
= major_version
| (minor_version
<< 16);
803 memcpy(importfile
->filename
, encoded_string
, length
);
808 /****************************************************************************
809 * ctl2_encode_variant
811 * Encodes a variant, inline if possible or in custom data segment
816 * Failure: Error code from winerror.h
818 static HRESULT
ctl2_encode_variant(
819 ICreateTypeLib2Impl
*This
, /* [I] The typelib to allocate data in */
820 int *encoded_value
, /* [O] The encoded default value or data offset */
821 VARIANT
*value
, /* [I] Default value to be encoded */
822 VARTYPE arg_type
) /* [I] Argument type */
828 TRACE("%p %d %d\n", This
, V_VT(value
), arg_type
);
830 if(arg_type
== VT_INT
)
832 if(arg_type
== VT_UINT
)
836 if(V_VT(value
) != arg_type
) {
837 hres
= VariantChangeType(&v
, value
, 0, arg_type
);
842 /* Check if default value can be stored in encoded_value */
847 if(V_UI4(&v
)>0x3ffffff)
858 *encoded_value
= (V_UI4(&v
)&mask
) | ((0x80+0x4*arg_type
)<<24);
870 /* Construct the data to be allocated */
872 data
[0] = arg_type
+ (V_UI4(&v
)<<16);
873 data
[1] = (V_UI4(&v
)>>16) + 0x57570000;
875 /* Check if the data was already allocated */
876 /* Currently the structures doesn't allow to do it in a nice way */
877 for(*encoded_value
=0; *encoded_value
<=This
->typelib_segdir
[MSFT_SEG_CUSTDATA
].length
-8; *encoded_value
+=4)
878 if(!memcmp(&This
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][*encoded_value
], data
, 8))
881 /* Allocate the data */
882 *encoded_value
= ctl2_alloc_segment(This
, MSFT_SEG_CUSTDATA
, 8, 0);
883 if(*encoded_value
== -1)
884 return E_OUTOFMEMORY
;
886 memcpy(&This
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][*encoded_value
], data
, 8);
890 /* Construct the data */
891 int i
, len
= (6+SysStringLen(V_BSTR(&v
))+3) & ~0x3;
892 char *data
= HeapAlloc(GetProcessHeap(), 0, len
);
895 return E_OUTOFMEMORY
;
897 *((unsigned short*)data
) = arg_type
;
898 *((unsigned*)(data
+2)) = SysStringLen(V_BSTR(&v
));
899 for(i
=0; i
<SysStringLen(V_BSTR(&v
)); i
++) {
900 if(V_BSTR(&v
)[i
] <= 0x7f)
901 data
[i
+6] = V_BSTR(&v
)[i
];
905 WideCharToMultiByte(CP_ACP
, 0, V_BSTR(&v
), SysStringLen(V_BSTR(&v
)), &data
[6], len
-6, NULL
, NULL
);
906 for(i
=6+SysStringLen(V_BSTR(&v
)); i
<len
; i
++)
909 /* Check if the data was already allocated */
910 for(*encoded_value
=0; *encoded_value
<=This
->typelib_segdir
[MSFT_SEG_CUSTDATA
].length
-len
; *encoded_value
+=4)
911 if(!memcmp(&This
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][*encoded_value
], data
, len
)) {
912 HeapFree(GetProcessHeap(), 0, data
);
916 /* Allocate the data */
917 *encoded_value
= ctl2_alloc_segment(This
, MSFT_SEG_CUSTDATA
, len
, 0);
918 if(*encoded_value
== -1) {
919 HeapFree(GetProcessHeap(), 0, data
);
920 return E_OUTOFMEMORY
;
923 memcpy(&This
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][*encoded_value
], data
, len
);
924 HeapFree(GetProcessHeap(), 0, data
);
928 FIXME("Argument type not yet handled\n");
933 static int ctl2_find_custdata(
934 ICreateTypeLib2Impl
*This
,
938 while (offset
!= -1) {
939 MSFT_CDGuid
*cdentry
=
940 (MSFT_CDGuid
*)&This
->typelib_segment_data
[MSFT_SEG_CUSTDATAGUID
][offset
];
941 MSFT_GuidEntry
*guidentry
=
942 (MSFT_GuidEntry
*)&This
->typelib_segment_data
[MSFT_SEG_GUID
][cdentry
->GuidOffset
];
944 if (IsEqualGUID(guidentry
, guid
))
947 offset
= cdentry
->next
;
953 /****************************************************************************
954 * ctl2_decode_variant
961 * Failure: Error code from winerror.h
963 static HRESULT
ctl2_decode_variant(
964 ICreateTypeLib2Impl
*This
, /* [I] The typelib that contains the variant */
965 int data_offs
, /* [I] Offset within the data array, or the encoded value itself */
966 VARIANT
*value
) /* [O] Decoded value */
971 if (data_offs
& 0x80000000) {
972 /* data_offs contains the encoded value */
973 V_VT(value
) = (data_offs
& ~0x80000000) >> 26;
974 V_UI4(value
) = data_offs
& ~0xFF000000;
978 encoded_data
= &This
->typelib_segment_data
[MSFT_SEG_CUSTDATA
][data_offs
];
979 type
= *encoded_data
;
990 V_UI4(value
) = *(unsigned*)(encoded_data
+ 2);
996 len
= *(unsigned*)(encoded_data
+ 2);
999 V_BSTR(value
) = SysAllocStringByteLen(NULL
, len
* sizeof(OLECHAR
));
1000 for (i
= 0; i
< len
; ++i
)
1001 V_BSTR(value
)[i
] = *(encoded_data
+ 6 + i
);
1006 FIXME("Don't yet have decoder for this VARTYPE: %u\n", type
);
1011 /****************************************************************************
1014 * Adds a custom data element to an object in a type library.
1019 * Failure: One of E_INVALIDARG or E_OUTOFMEMORY.
1021 static HRESULT
ctl2_set_custdata(
1022 ICreateTypeLib2Impl
*This
, /* [I] The type library to store the custom data in. */
1023 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
1024 VARIANT
*pVarVal
, /* [I] The custom data itself. */
1025 int *offset
) /* [I/O] The list of custom data to prepend to. */
1027 MSFT_GuidEntry guidentry
;
1033 BOOL new_segment
= FALSE
;
1035 switch(V_VT(pVarVal
))
1047 return DISP_E_BADVARTYPE
;
1050 guidentry
.guid
= *guid
;
1052 guidentry
.hreftype
= -1;
1053 guidentry
.next_hash
= -1;
1055 guidoffset
= ctl2_alloc_guid(This
, &guidentry
);
1056 if (guidoffset
== -1) return E_OUTOFMEMORY
;
1058 status
= ctl2_encode_variant(This
, &dataoffset
, pVarVal
, V_VT(pVarVal
));
1062 custoffset
= ctl2_find_custdata(This
, guid
, *offset
);
1063 if (custoffset
== -1) {
1064 custoffset
= ctl2_alloc_segment(This
, MSFT_SEG_CUSTDATAGUID
, 12, 0);
1065 if (custoffset
== -1)
1066 return E_OUTOFMEMORY
;
1070 custdata
= (int *)&This
->typelib_segment_data
[MSFT_SEG_CUSTDATAGUID
][custoffset
];
1071 custdata
[0] = guidoffset
;
1072 custdata
[1] = dataoffset
;
1074 custdata
[2] = *offset
;
1075 *offset
= custoffset
;
1081 /****************************************************************************
1082 * ctl2_encode_typedesc
1084 * Encodes a type description, storing information in the TYPEDESC and ARRAYDESC
1085 * segments as needed.
1092 static int ctl2_encode_typedesc(
1093 ICreateTypeLib2Impl
*This
, /* [I] The type library in which to encode the TYPEDESC. */
1094 const TYPEDESC
*tdesc
, /* [I] The type description to encode. */
1095 int *encoded_tdesc
, /* [O] The encoded type description. */
1096 int *width
, /* [O] The width of the type, or NULL. */
1097 int *alignment
, /* [O] The alignment of the type, or NULL. */
1098 int *decoded_size
) /* [O] The total size of the unencoded TYPEDESCs, including nested descs. */
1109 default_tdesc
= 0x80000000 | (tdesc
->vt
<< 16) | tdesc
->vt
;
1110 if (!width
) width
= &scratch
;
1111 if (!alignment
) alignment
= &scratch
;
1112 if (!decoded_size
) decoded_size
= &scratch
;
1116 switch (tdesc
->vt
) {
1119 *encoded_tdesc
= default_tdesc
;
1125 *encoded_tdesc
= 0x80000000 | (VT_I4
<< 16) | VT_INT
;
1126 if ((This
->typelib_header
.varflags
& 0x0f) == SYS_WIN16
) {
1136 *encoded_tdesc
= 0x80000000 | (VT_UI4
<< 16) | VT_UINT
;
1137 if ((This
->typelib_header
.varflags
& 0x0f) == SYS_WIN16
) {
1149 *encoded_tdesc
= default_tdesc
;
1160 *encoded_tdesc
= default_tdesc
;
1166 *encoded_tdesc
= default_tdesc
;
1168 *alignment
= 4; /* guess? */
1172 *encoded_tdesc
= 0x80000000 | (VT_EMPTY
<< 16) | tdesc
->vt
;
1179 /* FIXME: Make with the error checking. */
1180 FIXME("PTR or SAFEARRAY vartype, may not work correctly.\n");
1182 ctl2_encode_typedesc(This
, tdesc
->u
.lptdesc
, &target_type
, NULL
, NULL
, &child_size
);
1184 for (typeoffset
= 0; typeoffset
< This
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
1185 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1186 if (((typedata
[0] & 0xffff) == tdesc
->vt
) && (typedata
[1] == target_type
)) break;
1189 if (typeoffset
== This
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
1192 if (target_type
& 0x80000000) {
1193 mix_field
= (target_type
>> 16) & VT_TYPEMASK
;
1195 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][target_type
];
1196 switch((typedata
[0]>>16) & ~VT_ARRAY
)
1204 mix_field
= typedata
[0]>>16;
1207 mix_field
= ((typedata
[0] >> 16) == 0x7fff) ? 0x7fff : 0x7ffe;
1212 if (tdesc
->vt
== VT_PTR
)
1213 mix_field
|= VT_BYREF
;
1214 else if (tdesc
->vt
== VT_SAFEARRAY
)
1215 mix_field
|= VT_ARRAY
;
1217 typeoffset
= ctl2_alloc_segment(This
, MSFT_SEG_TYPEDESC
, 8, 0);
1218 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1220 typedata
[0] = (mix_field
<< 16) | tdesc
->vt
;
1221 typedata
[1] = target_type
;
1224 *encoded_tdesc
= typeoffset
;
1228 *decoded_size
= sizeof(TYPEDESC
) + child_size
;
1233 /* FIXME: Make with the error checking. */
1234 int num_dims
= tdesc
->u
.lpadesc
->cDims
, elements
= 1, dim
;
1236 ctl2_encode_typedesc(This
, &tdesc
->u
.lpadesc
->tdescElem
, &target_type
, width
, alignment
, NULL
);
1237 arrayoffset
= ctl2_alloc_segment(This
, MSFT_SEG_ARRAYDESC
, (2 + 2 * num_dims
) * sizeof(int), 0);
1238 arraydata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_ARRAYDESC
][arrayoffset
];
1240 arraydata
[0] = target_type
;
1241 arraydata
[1] = num_dims
;
1242 arraydata
[1] |= ((num_dims
* 2 * sizeof(int)) << 16);
1245 for(dim
= 0; dim
< num_dims
; dim
++) {
1246 arraydata
[0] = tdesc
->u
.lpadesc
->rgbounds
[dim
].cElements
;
1247 arraydata
[1] = tdesc
->u
.lpadesc
->rgbounds
[dim
].lLbound
;
1248 elements
*= tdesc
->u
.lpadesc
->rgbounds
[dim
].cElements
;
1251 typeoffset
= ctl2_alloc_segment(This
, MSFT_SEG_TYPEDESC
, 8, 0);
1252 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1254 typedata
[0] = (0x7ffe << 16) | VT_CARRAY
;
1255 typedata
[1] = arrayoffset
;
1257 *encoded_tdesc
= typeoffset
;
1258 *width
= *width
* elements
;
1259 *decoded_size
= sizeof(ARRAYDESC
) + (num_dims
- 1) * sizeof(SAFEARRAYBOUND
);
1263 case VT_USERDEFINED
:
1265 const MSFT_TypeInfoBase
*basetype
;
1266 INT basevt
= 0x7fff;
1268 TRACE("USERDEFINED.\n");
1269 if (tdesc
->u
.hreftype
% sizeof(*basetype
) == 0 && tdesc
->u
.hreftype
< This
->typelib_segdir
[MSFT_SEG_TYPEINFO
].length
)
1271 basetype
= (MSFT_TypeInfoBase
*)&(This
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][tdesc
->u
.hreftype
]);
1272 switch(basetype
->typekind
& 0xf)
1278 FIXME("USERDEFINED basetype %d not handled\n", basetype
->typekind
& 0xf);
1282 for (typeoffset
= 0; typeoffset
< This
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
; typeoffset
+= 8) {
1283 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1284 if ((typedata
[0] == ((basevt
<< 16) | VT_USERDEFINED
)) && (typedata
[1] == tdesc
->u
.hreftype
)) break;
1287 if (typeoffset
== This
->typelib_segdir
[MSFT_SEG_TYPEDESC
].length
) {
1288 typeoffset
= ctl2_alloc_segment(This
, MSFT_SEG_TYPEDESC
, 8, 0);
1289 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][typeoffset
];
1291 typedata
[0] = (basevt
<< 16) | VT_USERDEFINED
;
1292 typedata
[1] = tdesc
->u
.hreftype
;
1295 *encoded_tdesc
= typeoffset
;
1302 FIXME("Unrecognized type %d.\n", tdesc
->vt
);
1303 *encoded_tdesc
= default_tdesc
;
1312 /****************************************************************************
1313 * ctl2_decode_typedesc
1315 * Decodes a type description from an ICreateTypeLib2Impl.
1320 * Failure: HRESULT error code.
1322 static HRESULT
ctl2_decode_typedesc(
1323 ICreateTypeLib2Impl
*This
, /* [I] The type library from which to decode the TYPEDESC. */
1324 int encoded_tdesc
, /* [I] The encoded type description. */
1325 TYPEDESC
*tdesc
) /* [O] The decoded type description. */
1330 if (encoded_tdesc
& 0x80000000) {
1331 tdesc
->vt
= encoded_tdesc
& VT_TYPEMASK
;
1332 tdesc
->u
.lptdesc
= NULL
;
1336 typedata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_TYPEDESC
][encoded_tdesc
];
1338 tdesc
->vt
= typedata
[0] & 0xFFFF;
1343 tdesc
->u
.lptdesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(TYPEDESC
));
1344 if (!tdesc
->u
.lptdesc
)
1345 return E_OUTOFMEMORY
;
1347 hres
= ctl2_decode_typedesc(This
, typedata
[1], tdesc
->u
.lptdesc
);
1349 HeapFree(GetProcessHeap(), 0, tdesc
->u
.lptdesc
);
1356 int arrayoffset
, *arraydata
, num_dims
;
1358 arrayoffset
= typedata
[1];
1359 arraydata
= (void *)&This
->typelib_segment_data
[MSFT_SEG_ARRAYDESC
][arrayoffset
];
1360 num_dims
= arraydata
[1] & 0xFFFF;
1362 tdesc
->u
.lpadesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
1363 sizeof(ARRAYDESC
) + sizeof(SAFEARRAYBOUND
) * (num_dims
- 1));
1364 if (!tdesc
->u
.lpadesc
)
1365 return E_OUTOFMEMORY
;
1367 hres
= ctl2_decode_typedesc(This
, arraydata
[0], &tdesc
->u
.lpadesc
->tdescElem
);
1369 HeapFree(GetProcessHeap(), 0, tdesc
->u
.lpadesc
);
1370 return E_OUTOFMEMORY
;
1373 for (i
= 0; i
< num_dims
; ++i
) {
1374 tdesc
->u
.lpadesc
->rgbounds
[i
].cElements
= arraydata
[2 + i
* 2];
1375 tdesc
->u
.lpadesc
->rgbounds
[i
].lLbound
= arraydata
[3 + i
* 2];
1380 case VT_USERDEFINED
:
1381 tdesc
->u
.hreftype
= typedata
[1];
1384 FIXME("unable to decode typedesc (%08x): unknown VT: %d\n", encoded_tdesc
, tdesc
->vt
);
1389 /****************************************************************************
1390 * ctl2_find_nth_reference
1392 * Finds a reference by index into the linked list of reference records.
1396 * Success: Offset of the desired reference record.
1399 static int ctl2_find_nth_reference(
1400 ICreateTypeLib2Impl
*This
, /* [I] The type library in which to search. */
1401 int offset
, /* [I] The starting offset of the reference list. */
1402 int index
) /* [I] The index of the reference to find. */
1404 MSFT_RefRecord
*ref
;
1406 for (; index
&& (offset
!= -1); index
--) {
1407 ref
= (MSFT_RefRecord
*)&This
->typelib_segment_data
[MSFT_SEG_REFERENCES
][offset
];
1408 offset
= ref
->onext
;
1414 /****************************************************************************
1415 * ctl2_find_typeinfo_from_offset
1417 * Finds an ITypeInfo given an offset into the TYPEINFO segment.
1422 * Failure: TYPE_E_ELEMENTNOTFOUND.
1424 static HRESULT
ctl2_find_typeinfo_from_offset(
1425 ICreateTypeLib2Impl
*This
, /* [I] The typelib to find the typeinfo in. */
1426 int offset
, /* [I] The offset of the desired typeinfo. */
1427 ITypeInfo
**ppTinfo
) /* [I] The typeinfo found. */
1430 ICreateTypeInfo2Impl
*typeinfo
;
1432 typeinfodata
= &This
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][offset
];
1434 for (typeinfo
= This
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
1435 if (typeinfo
->typeinfo
== typeinfodata
) {
1436 *ppTinfo
= (ITypeInfo
*)&typeinfo
->lpVtblTypeInfo2
;
1437 ITypeInfo2_AddRef(*ppTinfo
);
1442 ERR("Failed to find typeinfo, invariant varied.\n");
1444 return TYPE_E_ELEMENTNOTFOUND
;
1447 /****************************************************************************
1448 * funcrecord_reallochdr
1450 * Ensure FuncRecord data block contains header of required size
1454 * typedata [IO] - reference to pointer to data block
1455 * need [I] - required size of block in bytes
1459 * Number of additionally allocated bytes
1461 static INT
funcrecord_reallochdr(INT
**typedata
, int need
)
1463 int tail
= (*typedata
)[5]*((*typedata
)[4]&0x1000?16:12);
1464 int hdr
= (*typedata
)[0] - tail
;
1470 *typedata
= HeapReAlloc(GetProcessHeap(), 0, *typedata
, need
+ tail
);
1475 memmove((char*)*typedata
+ need
, (const char*)*typedata
+ hdr
, tail
);
1476 (*typedata
)[0] = need
+ tail
;
1478 /* fill in default values */
1479 for(i
= (hdr
+3)/4; (i
+1)*4 <= need
; i
++)
1487 (*typedata
)[i
] = -1;
1490 (*typedata
)[i
] = -1;
1493 (*typedata
)[i
] = -1;
1496 (*typedata
)[i
] = -1;
1502 (*typedata
)[i
] = -1;
1510 /*================== ICreateTypeInfo2 Implementation ===================================*/
1512 /******************************************************************************
1513 * ICreateTypeInfo2_QueryInterface {OLEAUT32}
1515 * See IUnknown_QueryInterface.
1517 static HRESULT WINAPI
ICreateTypeInfo2_fnQueryInterface(
1518 ICreateTypeInfo2
* iface
,
1522 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1524 TRACE("(%p)->(IID: %s)\n",This
,debugstr_guid(riid
));
1527 if(IsEqualIID(riid
, &IID_IUnknown
) ||
1528 IsEqualIID(riid
,&IID_ICreateTypeInfo
)||
1529 IsEqualIID(riid
,&IID_ICreateTypeInfo2
))
1532 } else if (IsEqualIID(riid
, &IID_ITypeInfo
) ||
1533 IsEqualIID(riid
, &IID_ITypeInfo2
)) {
1534 *ppvObject
= &This
->lpVtblTypeInfo2
;
1539 ICreateTypeInfo2_AddRef(iface
);
1540 TRACE("-- Interface: (%p)->(%p)\n",ppvObject
,*ppvObject
);
1543 TRACE("-- Interface: E_NOINTERFACE\n");
1544 return E_NOINTERFACE
;
1547 /******************************************************************************
1548 * ICreateTypeInfo2_AddRef {OLEAUT32}
1550 * See IUnknown_AddRef.
1552 static ULONG WINAPI
ICreateTypeInfo2_fnAddRef(ICreateTypeInfo2
*iface
)
1554 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1555 ULONG ref
= InterlockedIncrement(&This
->ref
);
1557 TRACE("(%p)->ref was %u\n",This
, ref
- 1);
1559 if(ref
==1 && This
->typelib
)
1560 ICreateTypeLib2_AddRef((ICreateTypeLib2
*)This
->typelib
);
1565 /******************************************************************************
1566 * ICreateTypeInfo2_Release {OLEAUT32}
1568 * See IUnknown_Release.
1570 static ULONG WINAPI
ICreateTypeInfo2_fnRelease(ICreateTypeInfo2
*iface
)
1572 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1573 ULONG ref
= InterlockedDecrement(&This
->ref
);
1575 TRACE("(%p)->(%u)\n",This
, ref
);
1578 if (This
->typelib
) {
1579 ICreateTypeLib2_fnRelease((ICreateTypeLib2
*)This
->typelib
);
1580 /* Keep This->typelib reference to make stored ICreateTypeInfo structure valid */
1581 /* This->typelib = NULL; */
1584 /* ICreateTypeLib2 frees all ICreateTypeInfos when it releases. */
1585 /* HeapFree(GetProcessHeap(),0,This); */
1593 /******************************************************************************
1594 * ICreateTypeInfo2_SetGuid {OLEAUT32}
1596 * See ICreateTypeInfo_SetGuid.
1598 static HRESULT WINAPI
ICreateTypeInfo2_fnSetGuid(ICreateTypeInfo2
*iface
, REFGUID guid
)
1600 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1602 MSFT_GuidEntry guidentry
;
1605 TRACE("(%p,%s)\n", iface
, debugstr_guid(guid
));
1607 guidentry
.guid
= *guid
;
1608 guidentry
.hreftype
= This
->typelib
->typelib_typeinfo_offsets
[This
->typeinfo
->typekind
>> 16];
1609 guidentry
.next_hash
= -1;
1611 offset
= ctl2_alloc_guid(This
->typelib
, &guidentry
);
1613 if (offset
== -1) return E_OUTOFMEMORY
;
1615 This
->typeinfo
->posguid
= offset
;
1617 if (IsEqualIID(guid
, &IID_IDispatch
)) {
1618 This
->typelib
->typelib_header
.dispatchpos
= This
->typelib
->typelib_typeinfo_offsets
[This
->typeinfo
->typekind
>> 16];
1624 /******************************************************************************
1625 * ICreateTypeInfo2_SetTypeFlags {OLEAUT32}
1627 * See ICreateTypeInfo_SetTypeFlags.
1629 static HRESULT WINAPI
ICreateTypeInfo2_fnSetTypeFlags(ICreateTypeInfo2
*iface
, UINT uTypeFlags
)
1631 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1633 TRACE("(%p,0x%x)\n", iface
, uTypeFlags
);
1635 if(uTypeFlags
& TYPEFLAG_FDUAL
) {
1636 This
->typeinfo
->typekind
|= 0x10;
1637 This
->typeinfo
->typekind
&= ~0x0f;
1638 This
->typeinfo
->typekind
|= TKIND_DISPATCH
;
1641 This
->dual
= HeapAlloc(GetProcessHeap(), 0, sizeof(ICreateTypeInfo2Impl
));
1643 return E_OUTOFMEMORY
;
1645 memcpy(This
->dual
, This
, sizeof(ICreateTypeInfo2Impl
));
1646 This
->dual
->ref
= 0;
1647 This
->dual
->typekind
= This
->typekind
==TKIND_DISPATCH
?
1648 TKIND_INTERFACE
: TKIND_DISPATCH
;
1649 This
->dual
->dual
= This
;
1652 /* Make sure dispatch is in typeinfos queue */
1653 if(This
->typekind
!= TKIND_DISPATCH
) {
1654 if(This
->typelib
->last_typeinfo
== This
)
1655 This
->typelib
->last_typeinfo
= This
->dual
;
1657 if(This
->typelib
->typeinfos
== This
)
1658 This
->typelib
->typeinfos
= This
->dual
;
1660 ICreateTypeInfo2Impl
*iter
;
1662 for(iter
=This
->typelib
->typeinfos
; iter
->next_typeinfo
!=This
; iter
=iter
->next_typeinfo
);
1663 iter
->next_typeinfo
= This
->dual
;
1666 iface
= (ICreateTypeInfo2
*)&This
->dual
->lpVtbl
;
1669 if (uTypeFlags
& (TYPEFLAG_FDISPATCHABLE
|TYPEFLAG_FDUAL
)) {
1670 static const WCHAR stdole2tlb
[] = { 's','t','d','o','l','e','2','.','t','l','b',0 };
1672 ITypeInfo
*dispatch
;
1676 hres
= LoadTypeLib(stdole2tlb
, &stdole
);
1680 hres
= ITypeLib_GetTypeInfoOfGuid(stdole
, &IID_IDispatch
, &dispatch
);
1681 ITypeLib_Release(stdole
);
1685 hres
= ICreateTypeInfo2_AddRefTypeInfo(iface
, dispatch
, &hreftype
);
1686 ITypeInfo_Release(dispatch
);
1691 This
->typeinfo
->flags
= uTypeFlags
;
1695 /******************************************************************************
1696 * ICreateTypeInfo2_SetDocString {OLEAUT32}
1698 * See ICreateTypeInfo_SetDocString.
1700 static HRESULT WINAPI
ICreateTypeInfo2_fnSetDocString(
1701 ICreateTypeInfo2
* iface
,
1704 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1708 TRACE("(%p,%s)\n", iface
, debugstr_w(pStrDoc
));
1710 return E_INVALIDARG
;
1712 offset
= ctl2_alloc_string(This
->typelib
, pStrDoc
);
1713 if (offset
== -1) return E_OUTOFMEMORY
;
1714 This
->typeinfo
->docstringoffs
= offset
;
1718 /******************************************************************************
1719 * ICreateTypeInfo2_SetHelpContext {OLEAUT32}
1721 * See ICreateTypeInfo_SetHelpContext.
1723 static HRESULT WINAPI
ICreateTypeInfo2_fnSetHelpContext(
1724 ICreateTypeInfo2
* iface
,
1725 DWORD dwHelpContext
)
1727 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1729 TRACE("(%p,%d)\n", iface
, dwHelpContext
);
1731 This
->typeinfo
->helpcontext
= dwHelpContext
;
1736 /******************************************************************************
1737 * ICreateTypeInfo2_SetVersion {OLEAUT32}
1739 * See ICreateTypeInfo_SetVersion.
1741 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVersion(
1742 ICreateTypeInfo2
* iface
,
1746 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1748 TRACE("(%p,%d,%d)\n", iface
, wMajorVerNum
, wMinorVerNum
);
1750 This
->typeinfo
->version
= wMajorVerNum
| (wMinorVerNum
<< 16);
1754 /******************************************************************************
1755 * ICreateTypeInfo2_AddRefTypeInfo {OLEAUT32}
1757 * See ICreateTypeInfo_AddRefTypeInfo.
1759 static HRESULT WINAPI
ICreateTypeInfo2_fnAddRefTypeInfo(
1760 ICreateTypeInfo2
* iface
,
1762 HREFTYPE
* phRefType
)
1764 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1766 ITypeLib
*container
;
1770 TRACE("(%p,%p,%p)\n", iface
, pTInfo
, phRefType
);
1772 if(!pTInfo
|| !phRefType
)
1773 return E_INVALIDARG
;
1776 * Unfortunately, we can't rely on the passed-in TypeInfo even having the
1777 * same internal structure as one of ours. It could be from another
1778 * implementation of ITypeInfo. So we need to do the following...
1780 res
= ITypeInfo_GetContainingTypeLib(pTInfo
, &container
, &index
);
1782 TRACE("failed to find containing typelib.\n");
1786 if (container
== (ITypeLib
*)&This
->typelib
->lpVtblTypeLib2
) {
1787 /* Process locally defined TypeInfo */
1788 *phRefType
= This
->typelib
->typelib_typeinfo_offsets
[index
];
1794 MSFT_GuidEntry guid
, *check_guid
;
1795 MSFT_ImpInfo impinfo
;
1796 int guid_offset
, import_offset
;
1799 /* Allocate container GUID */
1800 hres
= ITypeLib_GetLibAttr(container
, &tlibattr
);
1802 ITypeLib_Release(container
);
1806 guid
.guid
= tlibattr
->guid
;
1807 guid
.hreftype
= This
->typelib
->typelib_segdir
[MSFT_SEG_IMPORTFILES
].length
+2;
1808 guid
.next_hash
= -1;
1810 guid_offset
= ctl2_alloc_guid(This
->typelib
, &guid
);
1811 if(guid_offset
== -1) {
1812 ITypeLib_ReleaseTLibAttr(container
, tlibattr
);
1813 ITypeLib_Release(container
);
1814 return E_OUTOFMEMORY
;
1817 check_guid
= (MSFT_GuidEntry
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_GUID
][guid_offset
];
1818 if(check_guid
->hreftype
== guid
.hreftype
)
1819 This
->typelib
->typelib_guids
++;
1821 /* Get import file name */
1822 hres
= QueryPathOfRegTypeLib(&guid
.guid
, tlibattr
->wMajorVerNum
,
1823 tlibattr
->wMinorVerNum
, tlibattr
->lcid
, &name
);
1825 ITypeLib_ReleaseTLibAttr(container
, tlibattr
);
1826 ITypeLib_Release(container
);
1831 import_offset
= ctl2_alloc_importfile(This
->typelib
, guid_offset
, tlibattr
->lcid
,
1832 tlibattr
->wMajorVerNum
, tlibattr
->wMinorVerNum
, strrchrW(name
, '\\')+1);
1833 ITypeLib_ReleaseTLibAttr(container
, tlibattr
);
1834 SysFreeString(name
);
1836 if(import_offset
== -1) {
1837 ITypeLib_Release(container
);
1838 return E_OUTOFMEMORY
;
1841 /* Allocate referenced guid */
1842 hres
= ITypeInfo_GetTypeAttr(pTInfo
, &typeattr
);
1844 ITypeLib_Release(container
);
1848 guid
.guid
= typeattr
->guid
;
1849 guid
.hreftype
= This
->typelib
->typeinfo_guids
*12+1;
1850 guid
.next_hash
= -1;
1851 typekind
= typeattr
->typekind
;
1852 ITypeInfo_ReleaseTypeAttr(pTInfo
, typeattr
);
1854 guid_offset
= ctl2_alloc_guid(This
->typelib
, &guid
);
1855 if(guid_offset
== -1) {
1856 ITypeLib_Release(container
);
1857 return E_OUTOFMEMORY
;
1860 check_guid
= (MSFT_GuidEntry
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_GUID
][guid_offset
];
1861 if(check_guid
->hreftype
== guid
.hreftype
)
1862 This
->typelib
->typeinfo_guids
++;
1864 /* Allocate importinfo */
1865 impinfo
.flags
= (typekind
<<24) | MSFT_IMPINFO_OFFSET_IS_GUID
;
1866 impinfo
.oImpFile
= import_offset
;
1867 impinfo
.oGuid
= guid_offset
;
1868 *phRefType
= ctl2_alloc_importinfo(This
->typelib
, &impinfo
)+1;
1870 if(IsEqualGUID(&guid
.guid
, &IID_IDispatch
))
1871 This
->typelib
->typelib_header
.dispatchpos
= *phRefType
;
1874 ITypeLib_Release(container
);
1878 /******************************************************************************
1879 * ICreateTypeInfo2_AddFuncDesc {OLEAUT32}
1881 * See ICreateTypeInfo_AddFuncDesc.
1883 static HRESULT WINAPI
ICreateTypeInfo2_fnAddFuncDesc(
1884 ICreateTypeInfo2
* iface
,
1886 FUNCDESC
* pFuncDesc
)
1888 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
1890 CyclicList
*iter
, *insert
;
1892 int i
, num_defaults
= 0, num_retval
= 0;
1896 TRACE("(%p,%d,%p)\n", iface
, index
, pFuncDesc
);
1898 if(!pFuncDesc
|| pFuncDesc
->oVft
&3)
1899 return E_INVALIDARG
;
1901 TRACE("{%d,%p,%p,%d,%d,%d,%d,%d,%d,%d,{%d},%d}\n", pFuncDesc
->memid
,
1902 pFuncDesc
->lprgscode
, pFuncDesc
->lprgelemdescParam
, pFuncDesc
->funckind
,
1903 pFuncDesc
->invkind
, pFuncDesc
->callconv
, pFuncDesc
->cParams
,
1904 pFuncDesc
->cParamsOpt
, pFuncDesc
->oVft
, pFuncDesc
->cScodes
,
1905 pFuncDesc
->elemdescFunc
.tdesc
.vt
, pFuncDesc
->wFuncFlags
);
1907 if(pFuncDesc
->cParamsOpt
|| pFuncDesc
->cScodes
)
1908 FIXME("Unimplemented parameter - created typelib will be incorrect\n");
1910 switch(This
->typekind
) {
1912 if(pFuncDesc
->funckind
!= FUNC_STATIC
)
1913 return TYPE_E_BADMODULEKIND
;
1915 case TKIND_DISPATCH
:
1916 if(pFuncDesc
->funckind
!= FUNC_DISPATCH
)
1917 return TYPE_E_BADMODULEKIND
;
1920 if(pFuncDesc
->funckind
!= FUNC_PUREVIRTUAL
)
1921 return TYPE_E_BADMODULEKIND
;
1924 if(This
->typeinfo
->cElement
<index
)
1925 return TYPE_E_ELEMENTNOTFOUND
;
1927 if((pFuncDesc
->invkind
&(INVOKE_PROPERTYPUT
|INVOKE_PROPERTYPUTREF
)) &&
1928 !pFuncDesc
->cParams
)
1929 return TYPE_E_INCONSISTENTPROPFUNCS
;
1931 /* get number of arguments with default values specified */
1932 for (i
= 0; i
< pFuncDesc
->cParams
; i
++) {
1933 if(pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
)
1935 if(pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
& PARAMFLAG_FRETVAL
)
1939 if (!This
->typedata
) {
1940 This
->typedata
= alloc_cyclic_list_item(CyclicListSentinel
);
1942 return E_OUTOFMEMORY
;
1944 This
->typedata
->next
= This
->typedata
;
1947 This
->dual
->typedata
= This
->typedata
;
1950 /* allocate type data space for us */
1951 insert
= alloc_cyclic_list_item(CyclicListFunc
);
1953 return E_OUTOFMEMORY
;
1954 insert
->u
.data
= HeapAlloc(GetProcessHeap(), 0, sizeof(int[6])+sizeof(int[(num_defaults
?4:3)])*pFuncDesc
->cParams
);
1955 if(!insert
->u
.data
) {
1956 HeapFree(GetProcessHeap(), 0, insert
);
1957 return E_OUTOFMEMORY
;
1960 /* fill out the basic type information */
1961 typedata
= insert
->u
.data
;
1962 typedata
[0] = 0x18 + pFuncDesc
->cParams
*(num_defaults
?16:12);
1963 ctl2_encode_typedesc(This
->typelib
, &pFuncDesc
->elemdescFunc
.tdesc
, &typedata
[1], NULL
, NULL
, &decoded_size
);
1964 typedata
[2] = pFuncDesc
->wFuncFlags
;
1965 typedata
[3] = ((sizeof(FUNCDESC
) + decoded_size
) << 16) | (unsigned short)(pFuncDesc
->oVft
?pFuncDesc
->oVft
+1:0);
1966 typedata
[4] = (pFuncDesc
->callconv
<< 8) | (pFuncDesc
->invkind
<< 3) | pFuncDesc
->funckind
;
1967 if(num_defaults
) typedata
[4] |= 0x1000;
1968 if (num_retval
) typedata
[4] |= 0x4000;
1969 typedata
[5] = pFuncDesc
->cParams
;
1971 /* NOTE: High word of typedata[3] is total size of FUNCDESC + size of all ELEMDESCs for params + TYPEDESCs for pointer params and return types. */
1972 /* That is, total memory allocation required to reconstitute the FUNCDESC in its entirety. */
1973 typedata
[3] += (sizeof(ELEMDESC
) * pFuncDesc
->cParams
) << 16;
1974 typedata
[3] += (sizeof(PARAMDESCEX
) * num_defaults
) << 16;
1976 /* add default values */
1978 for (i
= 0; i
< pFuncDesc
->cParams
; i
++)
1979 if(pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
) {
1980 hres
= ctl2_encode_variant(This
->typelib
, typedata
+6+i
,
1981 &pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
->varDefaultValue
,
1982 pFuncDesc
->lprgelemdescParam
[i
].tdesc
.vt
);
1985 HeapFree(GetProcessHeap(), 0, insert
->u
.data
);
1986 HeapFree(GetProcessHeap(), 0, insert
);
1990 typedata
[6+i
] = 0xffffffff;
1992 num_defaults
= pFuncDesc
->cParams
;
1996 for (i
= 0; i
< pFuncDesc
->cParams
; i
++) {
1997 ctl2_encode_typedesc(This
->typelib
, &pFuncDesc
->lprgelemdescParam
[i
].tdesc
,
1998 &typedata
[6+num_defaults
+(i
*3)], NULL
, NULL
, &decoded_size
);
1999 typedata
[7+num_defaults
+(i
*3)] = -1;
2000 typedata
[8+num_defaults
+(i
*3)] = pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
;
2001 typedata
[3] += decoded_size
<< 16;
2004 /* update the index data */
2005 insert
->indice
= pFuncDesc
->memid
;
2008 /* insert type data to list */
2009 if(index
== This
->typeinfo
->cElement
) {
2010 insert
->next
= This
->typedata
->next
;
2011 This
->typedata
->next
= insert
;
2012 This
->typedata
= insert
;
2015 This
->dual
->typedata
= This
->typedata
;
2017 iter
= This
->typedata
->next
;
2018 for(i
=0; i
<index
; i
++)
2021 insert
->next
= iter
->next
;
2022 iter
->next
= insert
;
2025 /* update type data size */
2026 This
->typedata
->next
->u
.val
+= 0x18 + pFuncDesc
->cParams
*(num_defaults
?16:12);
2028 /* Increment the number of function elements */
2029 This
->typeinfo
->cElement
+= 1;
2034 /******************************************************************************
2035 * ICreateTypeInfo2_AddImplType {OLEAUT32}
2037 * See ICreateTypeInfo_AddImplType.
2039 static HRESULT WINAPI
ICreateTypeInfo2_fnAddImplType(
2040 ICreateTypeInfo2
* iface
,
2044 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2046 TRACE("(%p,%d,%d)\n", iface
, index
, hRefType
);
2048 if (This
->typekind
== TKIND_COCLASS
) {
2050 MSFT_RefRecord
*ref
;
2053 if (This
->typeinfo
->datatype1
!= -1) return TYPE_E_ELEMENTNOTFOUND
;
2055 offset
= ctl2_alloc_segment(This
->typelib
, MSFT_SEG_REFERENCES
, sizeof(MSFT_RefRecord
), 0);
2056 if (offset
== -1) return E_OUTOFMEMORY
;
2058 This
->typeinfo
->datatype1
= offset
;
2062 lastoffset
= ctl2_find_nth_reference(This
->typelib
, This
->typeinfo
->datatype1
, index
- 1);
2063 if (lastoffset
== -1) return TYPE_E_ELEMENTNOTFOUND
;
2065 ref
= (MSFT_RefRecord
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
][lastoffset
];
2066 if (ref
->onext
!= -1) return TYPE_E_ELEMENTNOTFOUND
;
2068 offset
= ctl2_alloc_segment(This
->typelib
, MSFT_SEG_REFERENCES
, sizeof(MSFT_RefRecord
), 0);
2069 if (offset
== -1) return E_OUTOFMEMORY
;
2071 ref
->onext
= offset
;
2074 ref
= (MSFT_RefRecord
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
][offset
];
2076 ref
->reftype
= hRefType
;
2078 ref
->oCustData
= -1;
2080 This
->typeinfo
->cImplTypes
++;
2081 } else if (This
->typekind
== TKIND_INTERFACE
) {
2082 if (This
->typeinfo
->cImplTypes
&& index
==1)
2083 return TYPE_E_BADMODULEKIND
;
2085 if( index
!= 0) return TYPE_E_ELEMENTNOTFOUND
;
2087 This
->typeinfo
->datatype1
= hRefType
;
2088 This
->typeinfo
->cImplTypes
= 1;
2089 } else if (This
->typekind
== TKIND_DISPATCH
) {
2090 if(index
!= 0) return TYPE_E_ELEMENTNOTFOUND
;
2092 /* FIXME: Check if referenced typeinfo is IDispatch */
2093 This
->typeinfo
->flags
|= TYPEFLAG_FDISPATCHABLE
;
2094 This
->typeinfo
->cImplTypes
= 1;
2096 FIXME("AddImplType unsupported on typekind %d\n", This
->typekind
);
2097 return E_OUTOFMEMORY
;
2103 /******************************************************************************
2104 * ICreateTypeInfo2_SetImplTypeFlags {OLEAUT32}
2106 * See ICreateTypeInfo_SetImplTypeFlags.
2108 static HRESULT WINAPI
ICreateTypeInfo2_fnSetImplTypeFlags(
2109 ICreateTypeInfo2
* iface
,
2113 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2115 MSFT_RefRecord
*ref
;
2117 TRACE("(%p,%d,0x%x)\n", iface
, index
, implTypeFlags
);
2119 if (This
->typekind
!= TKIND_COCLASS
) {
2120 return TYPE_E_BADMODULEKIND
;
2123 offset
= ctl2_find_nth_reference(This
->typelib
, This
->typeinfo
->datatype1
, index
);
2124 if (offset
== -1) return TYPE_E_ELEMENTNOTFOUND
;
2126 ref
= (MSFT_RefRecord
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
][offset
];
2127 ref
->flags
= implTypeFlags
;
2132 /******************************************************************************
2133 * ICreateTypeInfo2_SetAlignment {OLEAUT32}
2135 * See ICreateTypeInfo_SetAlignment.
2137 static HRESULT WINAPI
ICreateTypeInfo2_fnSetAlignment(
2138 ICreateTypeInfo2
* iface
,
2141 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2143 TRACE("(%p,%d)\n", iface
, cbAlignment
);
2145 if (!cbAlignment
) return E_INVALIDARG
;
2146 if (cbAlignment
> 16) return E_INVALIDARG
;
2148 This
->typeinfo
->typekind
&= ~0xffc0;
2149 This
->typeinfo
->typekind
|= cbAlignment
<< 6;
2151 /* FIXME: There's probably some way to simplify this. */
2152 switch (This
->typekind
) {
2158 case TKIND_INTERFACE
:
2159 case TKIND_DISPATCH
:
2161 if (cbAlignment
> 4) cbAlignment
= 4;
2171 This
->typeinfo
->typekind
|= cbAlignment
<< 11;
2176 /******************************************************************************
2177 * ICreateTypeInfo2_SetSchema {OLEAUT32}
2179 * See ICreateTypeInfo_SetSchema.
2181 static HRESULT WINAPI
ICreateTypeInfo2_fnSetSchema(
2182 ICreateTypeInfo2
* iface
,
2183 LPOLESTR pStrSchema
)
2185 FIXME("(%p,%s), stub!\n", iface
, debugstr_w(pStrSchema
));
2186 return E_OUTOFMEMORY
;
2189 /******************************************************************************
2190 * ICreateTypeInfo2_AddVarDesc {OLEAUT32}
2192 * See ICreateTypeInfo_AddVarDesc.
2194 static HRESULT WINAPI
ICreateTypeInfo2_fnAddVarDesc(
2195 ICreateTypeInfo2
* iface
,
2199 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2201 HRESULT status
= S_OK
;
2209 TRACE("(%p,%d,%p), stub!\n", iface
, index
, pVarDesc
);
2210 TRACE("%d, %p, %d, {{%x, %d}, {%p, %x}}, 0x%x, %d\n", pVarDesc
->memid
, pVarDesc
->lpstrSchema
, pVarDesc
->u
.oInst
,
2211 pVarDesc
->elemdescVar
.tdesc
.u
.hreftype
, pVarDesc
->elemdescVar
.tdesc
.vt
,
2212 pVarDesc
->elemdescVar
.u
.paramdesc
.pparamdescex
, pVarDesc
->elemdescVar
.u
.paramdesc
.wParamFlags
,
2213 pVarDesc
->wVarFlags
, pVarDesc
->varkind
);
2215 if ((This
->typeinfo
->cElement
>> 16) != index
) {
2216 TRACE("Out-of-order element.\n");
2217 return TYPE_E_ELEMENTNOTFOUND
;
2220 if (!This
->typedata
) {
2221 This
->typedata
= alloc_cyclic_list_item(CyclicListSentinel
);
2223 return E_OUTOFMEMORY
;
2225 This
->typedata
->next
= This
->typedata
;
2228 This
->dual
->typedata
= This
->typedata
;
2231 /* allocate type data space for us */
2232 insert
= alloc_cyclic_list_item(CyclicListVar
);
2234 return E_OUTOFMEMORY
;
2235 insert
->u
.data
= HeapAlloc(GetProcessHeap(), 0, sizeof(int[5]));
2236 if(!insert
->u
.data
) {
2237 HeapFree(GetProcessHeap(), 0, insert
);
2238 return E_OUTOFMEMORY
;
2241 insert
->next
= This
->typedata
->next
;
2242 This
->typedata
->next
= insert
;
2243 This
->typedata
= insert
;
2246 This
->dual
->typedata
= This
->typedata
;
2248 This
->typedata
->next
->u
.val
+= 0x14;
2249 typedata
= This
->typedata
->u
.data
;
2251 /* fill out the basic type information */
2252 typedata
[0] = 0x14 | (index
<< 16);
2253 typedata
[2] = pVarDesc
->wVarFlags
;
2254 typedata
[3] = (sizeof(VARDESC
) << 16) | pVarDesc
->varkind
;
2256 /* update the index data */
2257 insert
->indice
= 0x40000000 + index
;
2260 /* figure out type widths and whatnot */
2261 ctl2_encode_typedesc(This
->typelib
, &pVarDesc
->elemdescVar
.tdesc
,
2262 &typedata
[1], &var_datawidth
, &var_alignment
,
2265 if (pVarDesc
->varkind
!= VAR_CONST
)
2267 /* pad out starting position to data width */
2268 This
->datawidth
+= var_alignment
- 1;
2269 This
->datawidth
&= ~(var_alignment
- 1);
2270 typedata
[4] = This
->datawidth
;
2272 /* add the new variable to the total data width */
2273 This
->datawidth
+= var_datawidth
;
2275 This
->dual
->datawidth
= This
->datawidth
;
2277 /* add type description size to total required allocation */
2278 typedata
[3] += var_type_size
<< 16;
2280 /* fix type alignment */
2281 alignment
= (This
->typeinfo
->typekind
>> 11) & 0x1f;
2282 if (alignment
< var_alignment
) {
2283 alignment
= var_alignment
;
2284 This
->typeinfo
->typekind
&= ~0xf800;
2285 This
->typeinfo
->typekind
|= alignment
<< 11;
2289 if (!This
->typeinfo
->res2
) This
->typeinfo
->res2
= 0x1a;
2290 if ((index
== 0) || (index
== 1) || (index
== 2) || (index
== 4) || (index
== 9)) {
2291 This
->typeinfo
->res2
<<= 1;
2295 if (This
->typeinfo
->res3
== -1) This
->typeinfo
->res3
= 0;
2296 This
->typeinfo
->res3
+= 0x2c;
2298 /* pad data width to alignment */
2299 This
->typeinfo
->size
= (This
->datawidth
+ (alignment
- 1)) & ~(alignment
- 1);
2301 VARIANT
*value
= pVarDesc
->DUMMYUNIONNAME
.lpvarValue
;
2302 status
= ctl2_encode_variant(This
->typelib
, typedata
+4, value
, V_VT(value
));
2303 /* ??? native sets size 0x34 */
2304 typedata
[3] += 0x10 << 16;
2307 /* increment the number of variable elements */
2308 This
->typeinfo
->cElement
+= 0x10000;
2313 /******************************************************************************
2314 * ICreateTypeInfo2_SetFuncAndParamNames {OLEAUT32}
2316 * See ICreateTypeInfo_SetFuncAndParamNames.
2318 static HRESULT WINAPI
ICreateTypeInfo2_fnSetFuncAndParamNames(
2319 ICreateTypeInfo2
* iface
,
2321 LPOLESTR
* rgszNames
,
2324 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2325 CyclicList
*iter
= NULL
, *iter2
;
2326 int offset
, len
, i
=0;
2329 TRACE("(%p %d %p %d)\n", iface
, index
, rgszNames
, cNames
);
2332 return E_INVALIDARG
;
2334 if(index
>= (This
->typeinfo
->cElement
&0xFFFF) || !cNames
)
2335 return TYPE_E_ELEMENTNOTFOUND
;
2337 for(iter
=This
->typedata
->next
->next
, i
=0; /* empty */; iter
=iter
->next
)
2338 if (iter
->type
== CyclicListFunc
)
2342 /* cNames == cParams for put or putref accessor, cParams+1 otherwise */
2343 if(cNames
!= iter
->u
.data
[5] + ((iter
->u
.data
[4]>>3)&(INVOKE_PROPERTYPUT
|INVOKE_PROPERTYPUTREF
) ? 0 : 1))
2344 return TYPE_E_ELEMENTNOTFOUND
;
2346 len
= ctl2_encode_name(This
->typelib
, rgszNames
[0], &namedata
);
2347 for(iter2
=This
->typedata
->next
->next
; iter2
!=This
->typedata
->next
; iter2
=iter2
->next
) {
2348 if(iter2
->name
!=-1 && !memcmp(namedata
,
2349 This
->typelib
->typelib_segment_data
[MSFT_SEG_NAME
]+iter2
->name
+8, len
)) {
2350 /* getters/setters can have a same name */
2351 if (iter2
->type
== CyclicListFunc
) {
2352 INT inv1
= iter2
->u
.data
[4] >> 3;
2353 INT inv2
= iter
->u
.data
[4] >> 3;
2354 if (((inv1
&(INVOKE_PROPERTYPUT
|INVOKE_PROPERTYPUTREF
)) && (inv2
&INVOKE_PROPERTYGET
)) ||
2355 ((inv2
&(INVOKE_PROPERTYPUT
|INVOKE_PROPERTYPUTREF
)) && (inv1
&INVOKE_PROPERTYGET
)))
2359 return TYPE_E_AMBIGUOUSNAME
;
2363 offset
= ctl2_alloc_name(This
->typelib
, rgszNames
[0]);
2365 return E_OUTOFMEMORY
;
2367 iter
->name
= offset
;
2369 namedata
= This
->typelib
->typelib_segment_data
[MSFT_SEG_NAME
] + offset
;
2370 if (*((INT
*)namedata
) == -1)
2371 *((INT
*)namedata
) = This
->typelib
->typelib_typeinfo_offsets
[This
->typeinfo
->typekind
>> 16];
2373 len
= (iter
->u
.data
[0]&0xFFFF)/4 - iter
->u
.data
[5]*3;
2375 for (i
= 1; i
< cNames
; i
++) {
2376 offset
= ctl2_alloc_name(This
->typelib
, rgszNames
[i
]);
2377 iter
->u
.data
[len
+ ((i
-1)*3) + 1] = offset
;
2383 /******************************************************************************
2384 * ICreateTypeInfo2_SetVarName {OLEAUT32}
2386 * See ICreateTypeInfo_SetVarName.
2388 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVarName(
2389 ICreateTypeInfo2
* iface
,
2393 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2398 TRACE("(%p,%d,%s), stub!\n", iface
, index
, debugstr_w(szName
));
2400 if ((This
->typeinfo
->cElement
>> 16) <= index
) {
2401 TRACE("Out-of-order element.\n");
2402 return TYPE_E_ELEMENTNOTFOUND
;
2405 offset
= ctl2_alloc_name(This
->typelib
, szName
);
2406 if (offset
== -1) return E_OUTOFMEMORY
;
2408 namedata
= This
->typelib
->typelib_segment_data
[MSFT_SEG_NAME
] + offset
;
2409 if (*((INT
*)namedata
) == -1) {
2410 *((INT
*)namedata
) = This
->typelib
->typelib_typeinfo_offsets
[This
->typeinfo
->typekind
>> 16];
2411 namedata
[9] |= 0x10;
2413 if (This
->typekind
== TKIND_ENUM
) {
2414 namedata
[9] |= 0x20;
2417 for(iter
= This
->typedata
->next
->next
, i
= 0; /* empty */; iter
= iter
->next
)
2418 if (iter
->type
== CyclicListVar
)
2422 iter
->name
= offset
;
2426 /******************************************************************************
2427 * ICreateTypeInfo2_SetTypeDescAlias {OLEAUT32}
2429 * See ICreateTypeInfo_SetTypeDescAlias.
2431 static HRESULT WINAPI
ICreateTypeInfo2_fnSetTypeDescAlias(
2432 ICreateTypeInfo2
* iface
,
2433 TYPEDESC
* pTDescAlias
)
2435 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2437 int encoded_typedesc
;
2440 if (This
->typekind
!= TKIND_ALIAS
) {
2441 return TYPE_E_WRONGTYPEKIND
;
2444 FIXME("(%p,%p), hack!\n", iface
, pTDescAlias
);
2446 if (ctl2_encode_typedesc(This
->typelib
, pTDescAlias
, &encoded_typedesc
, &width
, NULL
, NULL
) == -1) {
2447 return E_OUTOFMEMORY
;
2450 This
->typeinfo
->size
= width
;
2451 This
->typeinfo
->datatype1
= encoded_typedesc
;
2456 /******************************************************************************
2457 * ICreateTypeInfo2_DefineFuncAsDllEntry {OLEAUT32}
2459 * See ICreateTypeInfo_DefineFuncAsDllEntry.
2461 static HRESULT WINAPI
ICreateTypeInfo2_fnDefineFuncAsDllEntry(
2462 ICreateTypeInfo2
* iface
,
2465 LPOLESTR szProcName
)
2467 FIXME("(%p,%d,%s,%s), stub!\n", iface
, index
, debugstr_w(szDllName
), debugstr_w(szProcName
));
2468 return E_OUTOFMEMORY
;
2471 /******************************************************************************
2472 * ICreateTypeInfo2_SetFuncDocString {OLEAUT32}
2474 * See ICreateTypeInfo_SetFuncDocString.
2476 static HRESULT WINAPI
ICreateTypeInfo2_fnSetFuncDocString(
2477 ICreateTypeInfo2
* iface
,
2479 LPOLESTR szDocString
)
2481 FIXME("(%p,%d,%s), stub!\n", iface
, index
, debugstr_w(szDocString
));
2482 return E_OUTOFMEMORY
;
2485 /******************************************************************************
2486 * ICreateTypeInfo2_SetVarDocString {OLEAUT32}
2488 * See ICreateTypeInfo_SetVarDocString.
2490 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVarDocString(
2491 ICreateTypeInfo2
* iface
,
2493 LPOLESTR szDocString
)
2495 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2497 FIXME("(%p,%d,%s), stub!\n", iface
, index
, debugstr_w(szDocString
));
2499 ctl2_alloc_string(This
->typelib
, szDocString
);
2501 return E_OUTOFMEMORY
;
2504 /******************************************************************************
2505 * ICreateTypeInfo2_SetFuncHelpContext {OLEAUT32}
2507 * See ICreateTypeInfo_SetFuncHelpContext.
2509 static HRESULT WINAPI
ICreateTypeInfo2_fnSetFuncHelpContext(
2510 ICreateTypeInfo2
* iface
,
2512 DWORD dwHelpContext
)
2514 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2517 TRACE("(%p,%d,%d)\n", iface
, index
, dwHelpContext
);
2519 if(This
->typeinfo
->cElement
<index
)
2520 return TYPE_E_ELEMENTNOTFOUND
;
2522 if(This
->typeinfo
->cElement
== index
&& This
->typedata
->type
== CyclicListFunc
)
2523 func
= This
->typedata
;
2525 for(func
=This
->typedata
->next
->next
; func
!=This
->typedata
; func
=func
->next
)
2526 if (func
->type
== CyclicListFunc
)
2530 This
->typedata
->next
->u
.val
+= funcrecord_reallochdr(&func
->u
.data
, 7*sizeof(int));
2532 return E_OUTOFMEMORY
;
2534 func
->u
.data
[6] = dwHelpContext
;
2538 /******************************************************************************
2539 * ICreateTypeInfo2_SetVarHelpContext {OLEAUT32}
2541 * See ICreateTypeInfo_SetVarHelpContext.
2543 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVarHelpContext(
2544 ICreateTypeInfo2
* iface
,
2546 DWORD dwHelpContext
)
2548 FIXME("(%p,%d,%d), stub!\n", iface
, index
, dwHelpContext
);
2549 return E_OUTOFMEMORY
;
2552 /******************************************************************************
2553 * ICreateTypeInfo2_SetMops {OLEAUT32}
2555 * See ICreateTypeInfo_SetMops.
2557 static HRESULT WINAPI
ICreateTypeInfo2_fnSetMops(
2558 ICreateTypeInfo2
* iface
,
2562 FIXME("(%p,%d,%p), stub!\n", iface
, index
, bstrMops
);
2563 return E_OUTOFMEMORY
;
2566 /******************************************************************************
2567 * ICreateTypeInfo2_SetTypeIdldesc {OLEAUT32}
2569 * See ICreateTypeInfo_SetTypeIdldesc.
2571 static HRESULT WINAPI
ICreateTypeInfo2_fnSetTypeIdldesc(
2572 ICreateTypeInfo2
* iface
,
2575 FIXME("(%p,%p), stub!\n", iface
, pIdlDesc
);
2576 return E_OUTOFMEMORY
;
2579 /******************************************************************************
2580 * ICreateTypeInfo2_LayOut {OLEAUT32}
2582 * See ICreateTypeInfo_LayOut.
2584 static HRESULT WINAPI
ICreateTypeInfo2_fnLayOut(
2585 ICreateTypeInfo2
* iface
)
2587 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2588 CyclicList
*iter
, *iter2
, *last
= NULL
, **typedata
;
2591 unsigned user_vft
= 0;
2594 TRACE("(%p)\n", iface
);
2596 /* FIXME: LayOut should be run on all ImplTypes */
2597 if(This
->typekind
== TKIND_COCLASS
)
2600 /* Validate inheritance */
2601 This
->typeinfo
->datatype2
= 0;
2602 hreftype
= This
->typeinfo
->datatype1
;
2604 /* Process internally defined interfaces */
2605 for(i
=0; i
<This
->typelib
->typelib_header
.nrtypeinfos
; i
++) {
2606 MSFT_TypeInfoBase
*header
;
2611 header
= (MSFT_TypeInfoBase
*)&(This
->typelib
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][hreftype
]);
2612 This
->typeinfo
->datatype2
+= (header
->cElement
<<16) + 1;
2613 hreftype
= header
->datatype1
;
2615 if(i
== This
->typelib
->typelib_header
.nrtypeinfos
)
2616 return TYPE_E_CIRCULARTYPE
;
2618 /* Process externally defined interfaces */
2619 if(hreftype
!= -1) {
2620 ITypeInfo
*cur
, *next
;
2623 hres
= ICreateTypeInfo_QueryInterface(iface
, &IID_ITypeInfo
, (void**)&next
);
2627 hres
= ITypeInfo_GetRefTypeInfo(next
, hreftype
, &cur
);
2628 ITypeInfo_Release(next
);
2634 hres
= ITypeInfo_GetTypeAttr(cur
, &typeattr
);
2636 ITypeInfo_Release(cur
);
2640 if(IsEqualGUID(&typeattr
->guid
, &IID_IDispatch
))
2641 This
->typeinfo
->flags
|= TYPEFLAG_FDISPATCHABLE
;
2643 This
->typeinfo
->datatype2
+= (typeattr
->cFuncs
<<16) + 1;
2644 ITypeInfo_ReleaseTypeAttr(cur
, typeattr
);
2646 hres
= ITypeInfo_GetRefTypeOfImplType(cur
, 0, &hreftype
);
2647 if(hres
== TYPE_E_ELEMENTNOTFOUND
)
2650 ITypeInfo_Release(cur
);
2654 hres
= ITypeInfo_GetRefTypeInfo(cur
, hreftype
, &next
);
2656 ITypeInfo_Release(cur
);
2660 ITypeInfo_Release(cur
);
2663 ITypeInfo_Release(cur
);
2666 /* Get cbSizeVft of inherited interface */
2667 /* Makes LayOut running recursively */
2668 if(This
->typeinfo
->datatype1
!= -1) {
2669 ITypeInfo
*cur
, *inherited
;
2672 hres
= ICreateTypeInfo_QueryInterface(iface
, &IID_ITypeInfo
, (void**)&cur
);
2676 hres
= ITypeInfo_GetRefTypeInfo(cur
, This
->typeinfo
->datatype1
, &inherited
);
2677 ITypeInfo_Release(cur
);
2681 hres
= ITypeInfo_GetTypeAttr(inherited
, &typeattr
);
2683 ITypeInfo_Release(inherited
);
2687 This
->typeinfo
->cbSizeVft
= typeattr
->cbSizeVft
* 4 / sizeof(void *);
2689 ITypeInfo_ReleaseTypeAttr(inherited
, typeattr
);
2690 ITypeInfo_Release(inherited
);
2692 This
->typeinfo
->cbSizeVft
= 0;
2697 typedata
= HeapAlloc(GetProcessHeap(), 0, sizeof(CyclicList
*)*(This
->typeinfo
->cElement
&0xffff));
2699 return E_OUTOFMEMORY
;
2701 /* Assign IDs and VTBL entries */
2702 for(iter
=This
->typedata
->next
->next
; iter
!=This
->typedata
->next
; iter
=iter
->next
)
2703 if (iter
->type
== CyclicListFunc
)
2706 if(last
&& last
->u
.data
[3]&1)
2707 user_vft
= last
->u
.data
[3]&0xffff;
2710 for(iter
=This
->typedata
->next
->next
; iter
!=This
->typedata
->next
; iter
=iter
->next
) {
2711 /* Assign MEMBERID if MEMBERID_NIL was specified */
2712 if(iter
->indice
== MEMBERID_NIL
) {
2713 iter
->indice
= 0x60000000 + i
+ (This
->typeinfo
->datatype2
<<16);
2715 for(iter2
=This
->typedata
->next
->next
; iter2
!=This
->typedata
->next
; iter2
=iter2
->next
) {
2716 if(iter
== iter2
) continue;
2717 if(iter2
->indice
== iter
->indice
) {
2718 iter
->indice
= 0x60000000 + This
->typeinfo
->cElement
+ (This
->typeinfo
->datatype2
<<16);
2720 for(iter2
=This
->typedata
->next
->next
; iter2
!=This
->typedata
->next
; iter2
=iter2
->next
) {
2721 if(iter
== iter2
) continue;
2722 if(iter2
->indice
== iter
->indice
) {
2724 iter2
= This
->typedata
->next
;
2733 if (iter
->type
!= CyclicListFunc
)
2738 iter
->u
.data
[0] = (iter
->u
.data
[0]&0xffff) | (i
<<16);
2740 if((iter
->u
.data
[3]&1) != (user_vft
&1)) {
2741 HeapFree(GetProcessHeap(), 0, typedata
);
2742 return TYPE_E_INVALIDID
;
2746 if(user_vft
< (iter
->u
.data
[3]&0xffff))
2747 user_vft
= (iter
->u
.data
[3]&0xffff);
2749 if((iter
->u
.data
[3]&0xffff) < This
->typeinfo
->cbSizeVft
) {
2750 HeapFree(GetProcessHeap(), 0, typedata
);
2751 return TYPE_E_INVALIDID
;
2753 } else if(This
->typekind
!= TKIND_MODULE
) {
2754 iter
->u
.data
[3] = (iter
->u
.data
[3]&0xffff0000) | This
->typeinfo
->cbSizeVft
;
2755 This
->typeinfo
->cbSizeVft
+= 4;
2758 /* Construct a list of elements with the same memberid */
2759 iter
->u
.data
[4] = (iter
->u
.data
[4]&0xffff) | (i
<<16);
2760 for(iter2
=This
->typedata
->next
->next
; iter2
!=iter
; iter2
=iter2
->next
) {
2761 if(iter
->indice
== iter2
->indice
) {
2764 v1
= iter
->u
.data
[4] >> 16;
2765 v2
= iter2
->u
.data
[4] >> 16;
2767 iter
->u
.data
[4] = (iter
->u
.data
[4]&0xffff) | (v2
<<16);
2768 iter2
->u
.data
[4] = (iter2
->u
.data
[4]&0xffff) | (v1
<<16);
2777 This
->typeinfo
->cbSizeVft
= user_vft
+3;
2779 for(i
=0; i
<(This
->typeinfo
->cElement
&0xffff); i
++) {
2780 if(typedata
[i
]->u
.data
[4]>>16 > i
) {
2783 inv
= (typedata
[i
]->u
.data
[4]>>3) & 0xf;
2784 i
= typedata
[i
]->u
.data
[4] >> 16;
2786 while(i
> typedata
[i
]->u
.data
[4]>>16) {
2787 int invkind
= (typedata
[i
]->u
.data
[4]>>3) & 0xf;
2790 HeapFree(GetProcessHeap(), 0, typedata
);
2791 return TYPE_E_DUPLICATEID
;
2794 i
= typedata
[i
]->u
.data
[4] >> 16;
2798 if(inv
& INVOKE_FUNC
) {
2799 HeapFree(GetProcessHeap(), 0, typedata
);
2800 return TYPE_E_INCONSISTENTPROPFUNCS
;
2805 HeapFree(GetProcessHeap(), 0, typedata
);
2809 /******************************************************************************
2810 * ICreateTypeInfo2_DeleteFuncDesc {OLEAUT32}
2812 * Delete a function description from a type.
2817 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2819 static HRESULT WINAPI
ICreateTypeInfo2_fnDeleteFuncDesc(
2820 ICreateTypeInfo2
* iface
, /* [I] The typeinfo from which to delete a function. */
2821 UINT index
) /* [I] The index of the function to delete. */
2823 FIXME("(%p,%d), stub!\n", iface
, index
);
2824 return E_OUTOFMEMORY
;
2827 /******************************************************************************
2828 * ICreateTypeInfo2_DeleteFuncDescByMemId {OLEAUT32}
2830 * Delete a function description from a type.
2835 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2837 static HRESULT WINAPI
ICreateTypeInfo2_fnDeleteFuncDescByMemId(
2838 ICreateTypeInfo2
* iface
, /* [I] The typeinfo from which to delete a function. */
2839 MEMBERID memid
, /* [I] The member id of the function to delete. */
2840 INVOKEKIND invKind
) /* [I] The invocation type of the function to delete. (?) */
2842 FIXME("(%p,%d,%d), stub!\n", iface
, memid
, invKind
);
2843 return E_OUTOFMEMORY
;
2846 /******************************************************************************
2847 * ICreateTypeInfo2_DeleteVarDesc {OLEAUT32}
2849 * Delete a variable description from a type.
2854 * Failure: One of E_OUTOFMEMORY, E_INVALIDARG, TYPE_E_IOERROR,
2855 * TYPE_E_INVDATAREAD, TYPE_E_UNSUPFORMAT or TYPE_E_INVALIDSTATE.
2857 static HRESULT WINAPI
ICreateTypeInfo2_fnDeleteVarDesc(
2858 ICreateTypeInfo2
* iface
, /* [I] The typeinfo from which to delete the variable description. */
2859 UINT index
) /* [I] The index of the variable description to delete. */
2861 FIXME("(%p,%d), stub!\n", iface
, index
);
2862 return E_OUTOFMEMORY
;
2865 /******************************************************************************
2866 * ICreateTypeInfo2_DeleteVarDescByMemId {OLEAUT32}
2868 * Delete a variable description from a type.
2873 * Failure: One of E_OUTOFMEMORY, E_INVALIDARG, TYPE_E_IOERROR,
2874 * TYPE_E_INVDATAREAD, TYPE_E_UNSUPFORMAT or TYPE_E_INVALIDSTATE.
2876 static HRESULT WINAPI
ICreateTypeInfo2_fnDeleteVarDescByMemId(
2877 ICreateTypeInfo2
* iface
, /* [I] The typeinfo from which to delete the variable description. */
2878 MEMBERID memid
) /* [I] The member id of the variable description to delete. */
2880 FIXME("(%p,%d), stub!\n", iface
, memid
);
2881 return E_OUTOFMEMORY
;
2884 /******************************************************************************
2885 * ICreateTypeInfo2_DeleteImplType {OLEAUT32}
2887 * Delete an interface implementation from a type. (?)
2892 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2894 static HRESULT WINAPI
ICreateTypeInfo2_fnDeleteImplType(
2895 ICreateTypeInfo2
* iface
, /* [I] The typeinfo from which to delete. */
2896 UINT index
) /* [I] The index of the interface to delete. */
2898 FIXME("(%p,%d), stub!\n", iface
, index
);
2899 return E_OUTOFMEMORY
;
2902 /******************************************************************************
2903 * ICreateTypeInfo2_SetCustData {OLEAUT32}
2905 * Set the custom data for a type.
2910 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2912 static HRESULT WINAPI
ICreateTypeInfo2_fnSetCustData(
2913 ICreateTypeInfo2
* iface
, /* [I] The typeinfo in which to set the custom data. */
2914 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
2915 VARIANT
* pVarVal
) /* [I] The custom data. */
2917 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2919 TRACE("(%p,%s,%p)!\n", iface
, debugstr_guid(guid
), pVarVal
);
2922 return E_INVALIDARG
;
2924 return ctl2_set_custdata(This
->typelib
, guid
, pVarVal
, &This
->typeinfo
->oCustData
);
2927 /******************************************************************************
2928 * ICreateTypeInfo2_SetFuncCustData {OLEAUT32}
2930 * Set the custom data for a function.
2935 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2937 static HRESULT WINAPI
ICreateTypeInfo2_fnSetFuncCustData(
2938 ICreateTypeInfo2
* iface
, /* [I] The typeinfo in which to set the custom data. */
2939 UINT index
, /* [I] The index of the function for which to set the custom data. */
2940 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
2941 VARIANT
* pVarVal
) /* [I] The custom data. */
2943 ICreateTypeInfo2Impl
*This
= (ICreateTypeInfo2Impl
*)iface
;
2946 TRACE("(%p,%d,%s,%p)\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
2948 if(index
>= (This
->typeinfo
->cElement
&0xFFFF))
2949 return TYPE_E_ELEMENTNOTFOUND
;
2951 for(iter
=This
->typedata
->next
->next
; /* empty */; iter
=iter
->next
)
2952 if (iter
->type
== CyclicListFunc
)
2956 This
->typedata
->next
->u
.val
+= funcrecord_reallochdr(&iter
->u
.data
, 13*sizeof(int));
2958 return E_OUTOFMEMORY
;
2960 iter
->u
.data
[4] |= 0x80;
2961 return ctl2_set_custdata(This
->typelib
, guid
, pVarVal
, &iter
->u
.data
[12]);
2964 /******************************************************************************
2965 * ICreateTypeInfo2_SetParamCustData {OLEAUT32}
2967 * Set the custom data for a function parameter.
2972 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2974 static HRESULT WINAPI
ICreateTypeInfo2_fnSetParamCustData(
2975 ICreateTypeInfo2
* iface
, /* [I] The typeinfo in which to set the custom data. */
2976 UINT indexFunc
, /* [I] The index of the function on which the parameter resides. */
2977 UINT indexParam
, /* [I] The index of the parameter on which to set the custom data. */
2978 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
2979 VARIANT
* pVarVal
) /* [I] The custom data. */
2981 FIXME("(%p,%d,%d,%s,%p), stub!\n", iface
, indexFunc
, indexParam
, debugstr_guid(guid
), pVarVal
);
2982 return E_OUTOFMEMORY
;
2985 /******************************************************************************
2986 * ICreateTypeInfo2_SetVarCustData {OLEAUT32}
2988 * Set the custom data for a variable.
2993 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
2995 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVarCustData(
2996 ICreateTypeInfo2
* iface
, /* [I] The typeinfo in which to set the custom data. */
2997 UINT index
, /* [I] The index of the variable on which to set the custom data. */
2998 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
2999 VARIANT
* pVarVal
) /* [I] The custom data. */
3001 FIXME("(%p,%d,%s,%p), stub!\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
3002 return E_OUTOFMEMORY
;
3005 /******************************************************************************
3006 * ICreateTypeInfo2_SetImplTypeCustData {OLEAUT32}
3008 * Set the custom data for an implemented interface.
3013 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3015 static HRESULT WINAPI
ICreateTypeInfo2_fnSetImplTypeCustData(
3016 ICreateTypeInfo2
* iface
, /* [I] The typeinfo on which to set the custom data. */
3017 UINT index
, /* [I] The index of the implemented interface on which to set the custom data. */
3018 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
3019 VARIANT
* pVarVal
) /* [I] The custom data. */
3021 FIXME("(%p,%d,%s,%p), stub!\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
3022 return E_OUTOFMEMORY
;
3025 /******************************************************************************
3026 * ICreateTypeInfo2_SetHelpStringContext {OLEAUT32}
3028 * Set the help string context for the typeinfo.
3033 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3035 static HRESULT WINAPI
ICreateTypeInfo2_fnSetHelpStringContext(
3036 ICreateTypeInfo2
* iface
, /* [I] The typeinfo on which to set the help string context. */
3037 ULONG dwHelpStringContext
) /* [I] The help string context. */
3039 FIXME("(%p,%d), stub!\n", iface
, dwHelpStringContext
);
3040 return E_OUTOFMEMORY
;
3043 /******************************************************************************
3044 * ICreateTypeInfo2_SetFuncHelpStringContext {OLEAUT32}
3046 * Set the help string context for a function.
3051 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3053 static HRESULT WINAPI
ICreateTypeInfo2_fnSetFuncHelpStringContext(
3054 ICreateTypeInfo2
* iface
, /* [I] The typeinfo on which to set the help string context. */
3055 UINT index
, /* [I] The index for the function on which to set the help string context. */
3056 ULONG dwHelpStringContext
) /* [I] The help string context. */
3058 FIXME("(%p,%d,%d), stub!\n", iface
, index
, dwHelpStringContext
);
3059 return E_OUTOFMEMORY
;
3062 /******************************************************************************
3063 * ICreateTypeInfo2_SetVarHelpStringContext {OLEAUT32}
3065 * Set the help string context for a variable.
3070 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3072 static HRESULT WINAPI
ICreateTypeInfo2_fnSetVarHelpStringContext(
3073 ICreateTypeInfo2
* iface
, /* [I] The typeinfo on which to set the help string context. */
3074 UINT index
, /* [I] The index of the variable on which to set the help string context. */
3075 ULONG dwHelpStringContext
) /* [I] The help string context */
3077 FIXME("(%p,%d,%d), stub!\n", iface
, index
, dwHelpStringContext
);
3078 return E_OUTOFMEMORY
;
3081 /******************************************************************************
3082 * ICreateTypeInfo2_Invalidate {OLEAUT32}
3084 * Undocumented function. (!)
3086 static HRESULT WINAPI
ICreateTypeInfo2_fnInvalidate(
3087 ICreateTypeInfo2
* iface
)
3089 FIXME("(%p), stub!\n", iface
);
3090 return E_OUTOFMEMORY
;
3093 /******************************************************************************
3094 * ICreateTypeInfo2_SetName {OLEAUT32}
3096 * Set the name for a typeinfo.
3101 * Failure: One of STG_E_INSUFFICIENTMEMORY, E_OUTOFMEMORY, E_INVALIDARG or TYPE_E_INVALIDSTATE.
3103 static HRESULT WINAPI
ICreateTypeInfo2_fnSetName(
3104 ICreateTypeInfo2
* iface
,
3107 FIXME("(%p,%s), stub!\n", iface
, debugstr_w(szName
));
3108 return E_OUTOFMEMORY
;
3111 /*================== ITypeInfo2 Implementation ===================================*/
3113 /******************************************************************************
3114 * ITypeInfo2_QueryInterface {OLEAUT32}
3116 * See IUnknown_QueryInterface.
3118 static HRESULT WINAPI
ITypeInfo2_fnQueryInterface(ITypeInfo2
* iface
, REFIID riid
, LPVOID
* ppv
)
3120 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3122 return ICreateTypeInfo2_QueryInterface((ICreateTypeInfo2
*)This
, riid
, ppv
);
3125 /******************************************************************************
3126 * ITypeInfo2_AddRef {OLEAUT32}
3128 * See IUnknown_AddRef.
3130 static ULONG WINAPI
ITypeInfo2_fnAddRef(ITypeInfo2
* iface
)
3132 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3134 return ICreateTypeInfo2_AddRef((ICreateTypeInfo2
*)This
);
3137 /******************************************************************************
3138 * ITypeInfo2_Release {OLEAUT32}
3140 * See IUnknown_Release.
3142 static ULONG WINAPI
ITypeInfo2_fnRelease(ITypeInfo2
* iface
)
3144 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3146 return ICreateTypeInfo2_Release((ICreateTypeInfo2
*)This
);
3149 /******************************************************************************
3150 * ITypeInfo2_GetTypeAttr {OLEAUT32}
3152 * See ITypeInfo_GetTypeAttr.
3154 static HRESULT WINAPI
ITypeInfo2_fnGetTypeAttr(
3156 TYPEATTR
** ppTypeAttr
)
3158 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3161 TRACE("(%p,%p)\n", iface
, ppTypeAttr
);
3164 return E_INVALIDARG
;
3166 hres
= ICreateTypeInfo_LayOut((ICreateTypeInfo
*)This
);
3170 *ppTypeAttr
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(TYPEATTR
));
3172 return E_OUTOFMEMORY
;
3174 if(This
->typeinfo
->posguid
!= -1) {
3175 MSFT_GuidEntry
*guid
;
3177 guid
= (MSFT_GuidEntry
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_GUID
][This
->typeinfo
->posguid
];
3178 (*ppTypeAttr
)->guid
= guid
->guid
;
3181 (*ppTypeAttr
)->lcid
= This
->typelib
->typelib_header
.lcid
;
3182 (*ppTypeAttr
)->cbSizeInstance
= This
->typeinfo
->size
;
3183 (*ppTypeAttr
)->typekind
= This
->typekind
;
3184 (*ppTypeAttr
)->cFuncs
= This
->typeinfo
->cElement
&0xffff;
3185 if(This
->typeinfo
->flags
&TYPEFLAG_FDUAL
&& This
->typekind
==TKIND_DISPATCH
)
3186 (*ppTypeAttr
)->cFuncs
+= 7;
3187 (*ppTypeAttr
)->cVars
= This
->typeinfo
->cElement
>>16;
3188 (*ppTypeAttr
)->cImplTypes
= This
->typeinfo
->cImplTypes
;
3189 (*ppTypeAttr
)->cbSizeVft
= This
->typekind
==TKIND_DISPATCH
? 7 * sizeof(void*) : This
->typeinfo
->cbSizeVft
;
3190 (*ppTypeAttr
)->cbAlignment
= (This
->typeinfo
->typekind
>>11) & 0x1f;
3191 (*ppTypeAttr
)->wTypeFlags
= This
->typeinfo
->flags
;
3192 (*ppTypeAttr
)->wMajorVerNum
= This
->typeinfo
->version
&0xffff;
3193 (*ppTypeAttr
)->wMinorVerNum
= This
->typeinfo
->version
>>16;
3195 if((*ppTypeAttr
)->typekind
== TKIND_ALIAS
)
3196 FIXME("TKIND_ALIAS handling not implemented\n");
3201 /******************************************************************************
3202 * ITypeInfo2_GetTypeComp {OLEAUT32}
3204 * See ITypeInfo_GetTypeComp.
3206 static HRESULT WINAPI
ITypeInfo2_fnGetTypeComp(
3208 ITypeComp
** ppTComp
)
3210 FIXME("(%p,%p), stub!\n", iface
, ppTComp
);
3211 return E_OUTOFMEMORY
;
3214 /******************************************************************************
3215 * ITypeInfo2_GetFuncDesc {OLEAUT32}
3217 * See ITypeInfo_GetFuncDesc.
3219 static HRESULT WINAPI
ITypeInfo2_fnGetFuncDesc(
3222 FUNCDESC
** ppFuncDesc
)
3224 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3225 int i
, *typedata
, num_defaults
= 0, hdr_len
, tail
, has_defaults
;
3229 TRACE("(%p,%d,%p), semi-stub\n", iface
, index
, ppFuncDesc
);
3232 return E_INVALIDARG
;
3234 if (index
>= This
->typeinfo
->cElement
)
3235 return TYPE_E_ELEMENTNOTFOUND
;
3237 hres
= ICreateTypeInfo2_LayOut((ICreateTypeInfo2
*)This
);
3241 desc
= This
->typedata
->next
;
3242 for (i
= index
; i
>= 0; ) {
3244 if (desc
->type
== CyclicListFunc
)
3248 typedata
= desc
->u
.data
;
3250 *ppFuncDesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(FUNCDESC
));
3252 return E_OUTOFMEMORY
;
3254 (*ppFuncDesc
)->memid
= desc
->indice
;
3255 (*ppFuncDesc
)->lprgscode
= NULL
; /* FIXME: Unimplemented */
3256 (*ppFuncDesc
)->funckind
= typedata
[4] & 0x7;
3257 (*ppFuncDesc
)->invkind
= (typedata
[4] >> 3) & 0xF;
3258 (*ppFuncDesc
)->callconv
= (typedata
[4] >> 8) & 0xF;
3259 (*ppFuncDesc
)->cParams
= typedata
[5];
3260 (*ppFuncDesc
)->cParamsOpt
= 0; /* FIXME: Unimplemented*/
3261 (*ppFuncDesc
)->oVft
= typedata
[3] & 0xFFFF;
3262 if ((*ppFuncDesc
)->oVft
)
3263 --(*ppFuncDesc
)->oVft
;
3264 (*ppFuncDesc
)->cScodes
= 0; /* FIXME: Unimplemented*/
3265 hres
= ctl2_decode_typedesc(This
->typelib
, typedata
[1],
3266 &(*ppFuncDesc
)->elemdescFunc
.tdesc
);
3268 HeapFree(GetProcessHeap(), 0, *ppFuncDesc
);
3271 (*ppFuncDesc
)->wFuncFlags
= typedata
[2];
3273 has_defaults
= typedata
[4] & 0x1000;
3274 tail
= typedata
[5] * (has_defaults
? 16 : 12);
3275 hdr_len
= ((typedata
[0] & 0xFFFF) - tail
) / sizeof(int);
3277 if ((*ppFuncDesc
)->cParams
> 0) {
3278 (*ppFuncDesc
)->lprgelemdescParam
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, (*ppFuncDesc
)->cParams
* sizeof(ELEMDESC
));
3279 if (!(*ppFuncDesc
)->lprgelemdescParam
) {
3280 HeapFree(GetProcessHeap(), 0, *ppFuncDesc
);
3281 return E_OUTOFMEMORY
;
3284 num_defaults
= (*ppFuncDesc
)->cParams
;
3286 for (i
= 0; i
< num_defaults
; ++i
) {
3287 if (typedata
[hdr_len
+ i
] != 0xFFFFFFFF) {
3288 (*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
|= PARAMFLAG_FHASDEFAULT
;
3290 (*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
= HeapAlloc(GetProcessHeap(), 0, sizeof(PARAMDESCEX
));
3291 if (!(*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
) {
3292 ITypeInfo2_ReleaseFuncDesc(iface
, *ppFuncDesc
);
3293 return E_OUTOFMEMORY
;
3296 (*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
->cBytes
= sizeof(PARAMDESCEX
);
3297 hres
= ctl2_decode_variant(This
->typelib
, typedata
[hdr_len
+ i
],
3298 &(*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
->varDefaultValue
);
3300 ITypeInfo2_ReleaseFuncDesc(iface
, *ppFuncDesc
);
3307 for (i
= 0; i
< (*ppFuncDesc
)->cParams
; ++i
) {
3308 hres
= ctl2_decode_typedesc(This
->typelib
, typedata
[hdr_len
+ num_defaults
+ (i
* 3)],
3309 &((*ppFuncDesc
)->lprgelemdescParam
+ i
)->tdesc
);
3311 ITypeInfo2_ReleaseFuncDesc(iface
, *ppFuncDesc
);
3314 (*ppFuncDesc
)->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
= typedata
[hdr_len
+ num_defaults
+ (i
* 3) + 2];
3321 /******************************************************************************
3322 * ITypeInfo2_GetVarDesc {OLEAUT32}
3324 * See ITypeInfo_GetVarDesc.
3326 static HRESULT WINAPI
ITypeInfo2_fnGetVarDesc(
3329 VARDESC
** ppVarDesc
)
3331 FIXME("(%p,%d,%p), stub!\n", iface
, index
, ppVarDesc
);
3332 return E_OUTOFMEMORY
;
3335 /******************************************************************************
3336 * ITypeInfo2_GetNames {OLEAUT32}
3338 * See ITypeInfo_GetNames.
3340 static HRESULT WINAPI
ITypeInfo2_fnGetNames(
3347 FIXME("(%p,%d,%p,%d,%p), stub!\n", iface
, memid
, rgBstrNames
, cMaxNames
, pcNames
);
3348 return E_OUTOFMEMORY
;
3351 /******************************************************************************
3352 * ITypeInfo2_GetRefTypeOfImplType {OLEAUT32}
3354 * See ITypeInfo_GetRefTypeOfImplType.
3356 static HRESULT WINAPI
ITypeInfo2_fnGetRefTypeOfImplType(
3361 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3362 MSFT_RefRecord
*ref
;
3365 TRACE("(%p,%d,%p)\n", iface
, index
, pRefType
);
3368 return E_INVALIDARG
;
3370 if(This
->typeinfo
->flags
&TYPEFLAG_FDUAL
) {
3376 if(This
->typekind
== TKIND_DISPATCH
)
3377 return ITypeInfo2_GetRefTypeOfImplType((ITypeInfo2
*)&This
->dual
->lpVtblTypeInfo2
,
3381 if(index
>=This
->typeinfo
->cImplTypes
)
3382 return TYPE_E_ELEMENTNOTFOUND
;
3384 if(This
->typekind
== TKIND_INTERFACE
) {
3385 *pRefType
= This
->typeinfo
->datatype1
+ 2;
3389 offset
= ctl2_find_nth_reference(This
->typelib
, This
->typeinfo
->datatype1
, index
);
3391 return TYPE_E_ELEMENTNOTFOUND
;
3393 ref
= (MSFT_RefRecord
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
][offset
];
3394 *pRefType
= ref
->reftype
;
3398 /******************************************************************************
3399 * ITypeInfo2_GetImplTypeFlags {OLEAUT32}
3401 * See ITypeInfo_GetImplTypeFlags.
3403 static HRESULT WINAPI
ITypeInfo2_fnGetImplTypeFlags(
3406 INT
* pImplTypeFlags
)
3408 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3410 MSFT_RefRecord
*ref
;
3412 TRACE("(%p,%d,%p)\n", iface
, index
, pImplTypeFlags
);
3415 return E_INVALIDARG
;
3417 if(index
>= This
->typeinfo
->cImplTypes
)
3418 return TYPE_E_ELEMENTNOTFOUND
;
3420 if(This
->typekind
!= TKIND_COCLASS
) {
3421 *pImplTypeFlags
= 0;
3425 offset
= ctl2_find_nth_reference(This
->typelib
, This
->typeinfo
->datatype1
, index
);
3427 return TYPE_E_ELEMENTNOTFOUND
;
3429 ref
= (MSFT_RefRecord
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_REFERENCES
][offset
];
3430 *pImplTypeFlags
= ref
->flags
;
3434 /******************************************************************************
3435 * ITypeInfo2_GetIDsOfNames {OLEAUT32}
3437 * See ITypeInfo_GetIDsOfNames.
3439 static HRESULT WINAPI
ITypeInfo2_fnGetIDsOfNames(
3441 LPOLESTR
* rgszNames
,
3445 FIXME("(%p,%p,%d,%p), stub!\n", iface
, rgszNames
, cNames
, pMemId
);
3446 return E_OUTOFMEMORY
;
3449 /******************************************************************************
3450 * ITypeInfo2_Invoke {OLEAUT32}
3452 * See ITypeInfo_Invoke.
3454 static HRESULT WINAPI
ITypeInfo2_fnInvoke(
3459 DISPPARAMS
* pDispParams
,
3460 VARIANT
* pVarResult
,
3461 EXCEPINFO
* pExcepInfo
,
3464 FIXME("(%p,%p,%d,%x,%p,%p,%p,%p), stub!\n", iface
, pvInstance
, memid
, wFlags
, pDispParams
, pVarResult
, pExcepInfo
, puArgErr
);
3465 return E_OUTOFMEMORY
;
3468 /******************************************************************************
3469 * ITypeInfo2_GetDocumentation {OLEAUT32}
3471 * See ITypeInfo_GetDocumentation.
3473 static HRESULT WINAPI
ITypeInfo2_fnGetDocumentation(
3477 BSTR
* pBstrDocString
,
3478 DWORD
* pdwHelpContext
,
3479 BSTR
* pBstrHelpFile
)
3481 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3482 HRESULT status
= TYPE_E_ELEMENTNOTFOUND
;
3483 INT nameoffset
, docstringoffset
, helpcontext
;
3485 TRACE("(%p,%d,%p,%p,%p,%p)\n", iface
, memid
, pBstrName
, pBstrDocString
, pdwHelpContext
, pBstrHelpFile
);
3489 nameoffset
= This
->typeinfo
->NameOffset
;
3490 docstringoffset
= This
->typeinfo
->docstringoffs
;
3491 helpcontext
= This
->typeinfo
->helpcontext
;
3495 if (This
->typedata
) {
3496 for(iter
=This
->typedata
->next
->next
; iter
!=This
->typedata
->next
; iter
=iter
->next
) {
3497 if (iter
->indice
== memid
) {
3498 if (iter
->type
== CyclicListFunc
) {
3499 const int *typedata
= iter
->u
.data
;
3500 int size
= (typedata
[0]&0xFFFF) - typedata
[5]*(typedata
[4]&0x1000?16:12);
3502 nameoffset
= iter
->name
;
3503 /* FIXME implement this once SetFuncDocString is implemented */
3504 docstringoffset
= -1;
3505 helpcontext
= (size
< 7*sizeof(int)) ? 0 : typedata
[6];
3509 FIXME("Not implemented for variable members\n");
3521 if (nameoffset
== -1)
3524 MSFT_NameIntro
*name
= (MSFT_NameIntro
*)&This
->typelib
->
3525 typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
];
3526 ctl2_decode_name((char*)&name
->namelen
, &string
);
3527 *pBstrName
= SysAllocString(string
);
3529 return E_OUTOFMEMORY
;
3533 if (pBstrDocString
) {
3534 if (docstringoffset
== -1)
3535 *pBstrDocString
= NULL
;
3537 MSFT_NameIntro
*name
= (MSFT_NameIntro
*)&This
->typelib
->
3538 typelib_segment_data
[MSFT_SEG_NAME
][docstringoffset
];
3539 ctl2_decode_name((char*)&name
->namelen
, &string
);
3540 *pBstrDocString
= SysAllocString(string
);
3541 if(!*pBstrDocString
) {
3542 if (pBstrName
) SysFreeString(*pBstrName
);
3543 return E_OUTOFMEMORY
;
3548 if (pdwHelpContext
) {
3549 *pdwHelpContext
= helpcontext
;
3552 if (pBstrHelpFile
) {
3553 status
= ITypeLib_GetDocumentation((ITypeLib
*)&This
->typelib
->lpVtblTypeLib2
,
3554 -1, NULL
, NULL
, NULL
, pBstrHelpFile
);
3556 if (pBstrName
) SysFreeString(*pBstrName
);
3557 if (pBstrDocString
) SysFreeString(*pBstrDocString
);
3565 /******************************************************************************
3566 * ITypeInfo2_GetDllEntry {OLEAUT32}
3568 * See ITypeInfo_GetDllEntry.
3570 static HRESULT WINAPI
ITypeInfo2_fnGetDllEntry(
3578 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", iface
, memid
, invKind
, pBstrDllName
, pBstrName
, pwOrdinal
);
3579 return E_OUTOFMEMORY
;
3582 /******************************************************************************
3583 * ITypeInfo2_GetRefTypeInfo {OLEAUT32}
3585 * See ITypeInfo_GetRefTypeInfo.
3587 static HRESULT WINAPI
ITypeInfo2_fnGetRefTypeInfo(
3590 ITypeInfo
** ppTInfo
)
3592 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3594 TRACE("(%p,%d,%p)\n", iface
, hRefType
, ppTInfo
);
3597 return E_INVALIDARG
;
3599 if(hRefType
==-2 && This
->dual
) {
3600 *ppTInfo
= (ITypeInfo
*)&This
->dual
->lpVtblTypeInfo2
;
3601 ITypeInfo_AddRef(*ppTInfo
);
3607 MSFT_ImpInfo
*impinfo
;
3608 MSFT_ImpFile
*impfile
;
3609 MSFT_GuidEntry
*guid
;
3613 if((hRefType
&(~0x3)) >= This
->typelib
->typelib_segdir
[MSFT_SEG_IMPORTINFO
].length
)
3616 impinfo
= (MSFT_ImpInfo
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_IMPORTINFO
][hRefType
&(~0x3)];
3617 impfile
= (MSFT_ImpFile
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_IMPORTFILES
][impinfo
->oImpFile
];
3618 guid
= (MSFT_GuidEntry
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_GUID
][impinfo
->oGuid
];
3620 ctl2_decode_string(impfile
->filename
, &filename
);
3622 hres
= LoadTypeLib(filename
, &tl
);
3626 hres
= ITypeLib_GetTypeInfoOfGuid(tl
, &guid
->guid
, ppTInfo
);
3628 ITypeLib_Release(tl
);
3631 ICreateTypeInfo2Impl
*iter
;
3634 for(iter
=This
->typelib
->typeinfos
; iter
; iter
=iter
->next_typeinfo
) {
3635 if(This
->typelib
->typelib_typeinfo_offsets
[i
] == (hRefType
&(~0x3))) {
3636 *ppTInfo
= (ITypeInfo
*)&iter
->lpVtblTypeInfo2
;
3638 ITypeLib_AddRef(*ppTInfo
);
3648 /******************************************************************************
3649 * ITypeInfo2_AddressOfMember {OLEAUT32}
3651 * See ITypeInfo_AddressOfMember.
3653 static HRESULT WINAPI
ITypeInfo2_fnAddressOfMember(
3659 FIXME("(%p,%d,%d,%p), stub!\n", iface
, memid
, invKind
, ppv
);
3660 return E_OUTOFMEMORY
;
3663 /******************************************************************************
3664 * ITypeInfo2_CreateInstance {OLEAUT32}
3666 * See ITypeInfo_CreateInstance.
3668 static HRESULT WINAPI
ITypeInfo2_fnCreateInstance(
3670 IUnknown
* pUnkOuter
,
3674 FIXME("(%p,%p,%s,%p), stub!\n", iface
, pUnkOuter
, debugstr_guid(riid
), ppvObj
);
3675 return E_OUTOFMEMORY
;
3678 /******************************************************************************
3679 * ITypeInfo2_GetMops {OLEAUT32}
3681 * See ITypeInfo_GetMops.
3683 static HRESULT WINAPI
ITypeInfo2_fnGetMops(
3688 FIXME("(%p,%d,%p), stub!\n", iface
, memid
, pBstrMops
);
3689 return E_OUTOFMEMORY
;
3692 /******************************************************************************
3693 * ITypeInfo2_GetContainingTypeLib {OLEAUT32}
3695 * See ITypeInfo_GetContainingTypeLib.
3697 static HRESULT WINAPI
ITypeInfo2_fnGetContainingTypeLib(
3702 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3704 TRACE("(%p,%p,%p)\n", iface
, ppTLib
, pIndex
);
3706 *ppTLib
= (ITypeLib
*)&This
->typelib
->lpVtblTypeLib2
;
3707 ICreateTypeLib_AddRef((ICreateTypeLib
*)This
->typelib
);
3708 *pIndex
= This
->typeinfo
->typekind
>> 16;
3713 static void release_typedesc(TYPEDESC
*tdesc
)
3717 if (tdesc
->vt
== VT_USERDEFINED
)
3720 next
= tdesc
->u
.lptdesc
;
3721 HeapFree(GetProcessHeap(), 0, tdesc
);
3726 /******************************************************************************
3727 * ITypeInfo2_ReleaseTypeAttr {OLEAUT32}
3729 * See ITypeInfo_ReleaseTypeAttr.
3731 static void WINAPI
ITypeInfo2_fnReleaseTypeAttr(
3733 TYPEATTR
* pTypeAttr
)
3735 TRACE("(%p,%p)\n", iface
, pTypeAttr
);
3737 if (pTypeAttr
->tdescAlias
.vt
!= VT_USERDEFINED
)
3738 release_typedesc(pTypeAttr
->tdescAlias
.u
.lptdesc
);
3740 HeapFree(GetProcessHeap(), 0, pTypeAttr
);
3743 /******************************************************************************
3744 * ITypeInfo2_ReleaseFuncDesc {OLEAUT32}
3746 * See ITypeInfo_ReleaseFuncDesc.
3748 static void WINAPI
ITypeInfo2_fnReleaseFuncDesc(
3750 FUNCDESC
* pFuncDesc
)
3754 TRACE("(%p,%p)\n", iface
, pFuncDesc
);
3756 HeapFree(GetProcessHeap(), 0, pFuncDesc
->lprgscode
);
3758 if (pFuncDesc
->lprgelemdescParam
) {
3759 for (i
= 0; i
< pFuncDesc
->cParams
; ++i
) {
3760 if (pFuncDesc
->lprgelemdescParam
[i
].tdesc
.vt
!= VT_USERDEFINED
)
3761 release_typedesc(pFuncDesc
->lprgelemdescParam
[i
].tdesc
.u
.lptdesc
);
3763 HeapFree(GetProcessHeap(), 0, pFuncDesc
->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
);
3765 HeapFree(GetProcessHeap(), 0, pFuncDesc
->lprgelemdescParam
);
3768 HeapFree(GetProcessHeap(), 0, pFuncDesc
->elemdescFunc
.u
.paramdesc
.pparamdescex
);
3770 if (pFuncDesc
->elemdescFunc
.tdesc
.vt
!= VT_USERDEFINED
)
3771 release_typedesc(pFuncDesc
->elemdescFunc
.tdesc
.u
.lptdesc
);
3773 HeapFree(GetProcessHeap(), 0, pFuncDesc
);
3776 /******************************************************************************
3777 * ITypeInfo2_ReleaseVarDesc {OLEAUT32}
3779 * See ITypeInfo_ReleaseVarDesc.
3781 static void WINAPI
ITypeInfo2_fnReleaseVarDesc(
3785 FIXME("(%p,%p), stub!\n", iface
, pVarDesc
);
3788 /******************************************************************************
3789 * ITypeInfo2_GetTypeKind {OLEAUT32}
3791 * Get the TYPEKIND value for a TypeInfo.
3796 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3798 static HRESULT WINAPI
ITypeInfo2_fnGetTypeKind(
3799 ITypeInfo2
* iface
, /* [I] The TypeInfo to obtain the typekind for. */
3800 TYPEKIND
* pTypeKind
) /* [O] The typekind for this TypeInfo. */
3802 FIXME("(%p,%p), stub!\n", iface
, pTypeKind
);
3803 return E_OUTOFMEMORY
;
3806 /******************************************************************************
3807 * ITypeInfo2_GetTypeFlags {OLEAUT32}
3809 * Get the Type Flags for a TypeInfo.
3814 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3816 static HRESULT WINAPI
ITypeInfo2_fnGetTypeFlags(
3817 ITypeInfo2
* iface
, /* [I] The TypeInfo to obtain the typeflags for. */
3818 ULONG
* pTypeFlags
) /* [O] The type flags for this TypeInfo. */
3820 FIXME("(%p,%p), stub!\n", iface
, pTypeFlags
);
3821 return E_OUTOFMEMORY
;
3824 /******************************************************************************
3825 * ITypeInfo2_GetFuncIndexOfMemId {OLEAUT32}
3827 * Gets the index of a function given its member id.
3832 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3834 static HRESULT WINAPI
ITypeInfo2_fnGetFuncIndexOfMemId(
3835 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the function. */
3836 MEMBERID memid
, /* [I] The member id for the function. */
3837 INVOKEKIND invKind
, /* [I] The invocation kind for the function. */
3838 UINT
* pFuncIndex
) /* [O] The index of the function. */
3840 FIXME("(%p,%d,%d,%p), stub!\n", iface
, memid
, invKind
, pFuncIndex
);
3841 return E_OUTOFMEMORY
;
3844 /******************************************************************************
3845 * ITypeInfo2_GetVarIndexOfMemId {OLEAUT32}
3847 * Gets the index of a variable given its member id.
3852 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3854 static HRESULT WINAPI
ITypeInfo2_fnGetVarIndexOfMemId(
3855 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the variable. */
3856 MEMBERID memid
, /* [I] The member id for the variable. */
3857 UINT
* pVarIndex
) /* [O] The index of the variable. */
3859 FIXME("(%p,%d,%p), stub!\n", iface
, memid
, pVarIndex
);
3860 return E_OUTOFMEMORY
;
3863 /******************************************************************************
3864 * ITypeInfo2_GetCustData {OLEAUT32}
3866 * Gets a custom data element from a TypeInfo.
3871 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3873 static HRESULT WINAPI
ITypeInfo2_fnGetCustData(
3874 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
3875 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
3876 VARIANT
* pVarVal
) /* [O] The custom data. */
3878 ICreateTypeInfo2Impl
*This
= impl_from_ITypeInfo2(iface
);
3879 MSFT_CDGuid
*cdentry
;
3882 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(guid
), pVarVal
);
3884 if (!guid
|| !pVarVal
)
3885 return E_INVALIDARG
;
3887 VariantClear(pVarVal
);
3889 offset
= ctl2_find_custdata(This
->typelib
, guid
, This
->typeinfo
->oCustData
);
3893 cdentry
= (MSFT_CDGuid
*)&This
->typelib
->typelib_segment_data
[MSFT_SEG_CUSTDATAGUID
][offset
];
3894 return ctl2_decode_variant(This
->typelib
, cdentry
->DataOffset
, pVarVal
);
3897 /******************************************************************************
3898 * ITypeInfo2_GetFuncCustData {OLEAUT32}
3900 * Gets a custom data element from a function.
3905 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3907 static HRESULT WINAPI
ITypeInfo2_fnGetFuncCustData(
3908 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
3909 UINT index
, /* [I] The index of the function for which to retrieve the custom data. */
3910 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
3911 VARIANT
* pVarVal
) /* [O] The custom data. */
3913 FIXME("(%p,%d,%s,%p), stub!\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
3914 return E_OUTOFMEMORY
;
3917 /******************************************************************************
3918 * ITypeInfo2_GetParamCustData {OLEAUT32}
3920 * Gets a custom data element from a parameter.
3925 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3927 static HRESULT WINAPI
ITypeInfo2_fnGetParamCustData(
3928 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
3929 UINT indexFunc
, /* [I] The index of the function for which to retrieve the custom data. */
3930 UINT indexParam
, /* [I] The index of the parameter for which to retrieve the custom data. */
3931 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
3932 VARIANT
* pVarVal
) /* [O] The custom data. */
3934 FIXME("(%p,%d,%d,%s,%p), stub!\n", iface
, indexFunc
, indexParam
, debugstr_guid(guid
), pVarVal
);
3935 return E_OUTOFMEMORY
;
3938 /******************************************************************************
3939 * ITypeInfo2_GetVarCustData {OLEAUT32}
3941 * Gets a custom data element from a variable.
3946 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3948 static HRESULT WINAPI
ITypeInfo2_fnGetVarCustData(
3949 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
3950 UINT index
, /* [I] The index of the variable for which to retrieve the custom data. */
3951 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
3952 VARIANT
* pVarVal
) /* [O] The custom data. */
3954 FIXME("(%p,%d,%s,%p), stub!\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
3955 return E_OUTOFMEMORY
;
3958 /******************************************************************************
3959 * ITypeInfo2_GetImplTypeCustData {OLEAUT32}
3961 * Gets a custom data element from an implemented type of a TypeInfo.
3966 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
3968 static HRESULT WINAPI
ITypeInfo2_fnGetImplTypeCustData(
3969 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
3970 UINT index
, /* [I] The index of the implemented type for which to retrieve the custom data. */
3971 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
3972 VARIANT
* pVarVal
) /* [O] The custom data. */
3974 FIXME("(%p,%d,%s,%p), stub!\n", iface
, index
, debugstr_guid(guid
), pVarVal
);
3975 return E_OUTOFMEMORY
;
3978 /******************************************************************************
3979 * ITypeInfo2_GetDocumentation2 {OLEAUT32}
3981 * Gets some documentation from a TypeInfo in a locale-aware fashion.
3986 * Failure: One of STG_E_INSUFFICIENTMEMORY or E_INVALIDARG.
3988 static HRESULT WINAPI
ITypeInfo2_fnGetDocumentation2(
3989 ITypeInfo2
* iface
, /* [I] The TypeInfo to retrieve the documentation from. */
3990 MEMBERID memid
, /* [I] The member id (why?). */
3991 LCID lcid
, /* [I] The locale (why?). */
3992 BSTR
* pbstrHelpString
, /* [O] The help string. */
3993 DWORD
* pdwHelpStringContext
, /* [O] The help string context. */
3994 BSTR
* pbstrHelpStringDll
) /* [O] The help file name. */
3996 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", iface
, memid
, lcid
, pbstrHelpString
, pdwHelpStringContext
, pbstrHelpStringDll
);
3997 return E_OUTOFMEMORY
;
4000 /******************************************************************************
4001 * ITypeInfo2_GetAllCustData {OLEAUT32}
4003 * Gets all of the custom data associated with a TypeInfo.
4008 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
4010 static HRESULT WINAPI
ITypeInfo2_fnGetAllCustData(
4011 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
4012 CUSTDATA
* pCustData
) /* [O] A pointer to the custom data. */
4014 FIXME("(%p,%p), stub!\n", iface
, pCustData
);
4015 return E_OUTOFMEMORY
;
4018 /******************************************************************************
4019 * ITypeInfo2_GetAllFuncCustData {OLEAUT32}
4021 * Gets all of the custom data associated with a function.
4026 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
4028 static HRESULT WINAPI
ITypeInfo2_fnGetAllFuncCustData(
4029 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
4030 UINT index
, /* [I] The index of the function for which to retrieve the custom data. */
4031 CUSTDATA
* pCustData
) /* [O] A pointer to the custom data. */
4033 FIXME("(%p,%d,%p), stub!\n", iface
, index
, pCustData
);
4034 return E_OUTOFMEMORY
;
4037 /******************************************************************************
4038 * ITypeInfo2_GetAllParamCustData {OLEAUT32}
4040 * Gets all of the custom data associated with a parameter.
4045 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
4047 static HRESULT WINAPI
ITypeInfo2_fnGetAllParamCustData(
4048 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
4049 UINT indexFunc
, /* [I] The index of the function for which to retrieve the custom data. */
4050 UINT indexParam
, /* [I] The index of the parameter for which to retrieve the custom data. */
4051 CUSTDATA
* pCustData
) /* [O] A pointer to the custom data. */
4053 FIXME("(%p,%d,%d,%p), stub!\n", iface
, indexFunc
, indexParam
, pCustData
);
4054 return E_OUTOFMEMORY
;
4057 /******************************************************************************
4058 * ITypeInfo2_GetAllVarCustData {OLEAUT32}
4060 * Gets all of the custom data associated with a variable.
4065 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
4067 static HRESULT WINAPI
ITypeInfo2_fnGetAllVarCustData(
4068 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
4069 UINT index
, /* [I] The index of the variable for which to retrieve the custom data. */
4070 CUSTDATA
* pCustData
) /* [O] A pointer to the custom data. */
4072 FIXME("(%p,%d,%p), stub!\n", iface
, index
, pCustData
);
4073 return E_OUTOFMEMORY
;
4076 /******************************************************************************
4077 * ITypeInfo2_GetAllImplTypeCustData {OLEAUT32}
4079 * Gets all of the custom data associated with an implemented type.
4084 * Failure: One of E_OUTOFMEMORY or E_INVALIDARG.
4086 static HRESULT WINAPI
ITypeInfo2_fnGetAllImplTypeCustData(
4087 ITypeInfo2
* iface
, /* [I] The TypeInfo in which to find the custom data. */
4088 UINT index
, /* [I] The index of the implemented type for which to retrieve the custom data. */
4089 CUSTDATA
* pCustData
) /* [O] A pointer to the custom data. */
4091 FIXME("(%p,%d,%p), stub!\n", iface
, index
, pCustData
);
4092 return E_OUTOFMEMORY
;
4096 /*================== ICreateTypeInfo2 & ITypeInfo2 VTABLEs And Creation ===================================*/
4098 static const ICreateTypeInfo2Vtbl ctypeinfo2vt
=
4101 ICreateTypeInfo2_fnQueryInterface
,
4102 ICreateTypeInfo2_fnAddRef
,
4103 ICreateTypeInfo2_fnRelease
,
4105 ICreateTypeInfo2_fnSetGuid
,
4106 ICreateTypeInfo2_fnSetTypeFlags
,
4107 ICreateTypeInfo2_fnSetDocString
,
4108 ICreateTypeInfo2_fnSetHelpContext
,
4109 ICreateTypeInfo2_fnSetVersion
,
4110 ICreateTypeInfo2_fnAddRefTypeInfo
,
4111 ICreateTypeInfo2_fnAddFuncDesc
,
4112 ICreateTypeInfo2_fnAddImplType
,
4113 ICreateTypeInfo2_fnSetImplTypeFlags
,
4114 ICreateTypeInfo2_fnSetAlignment
,
4115 ICreateTypeInfo2_fnSetSchema
,
4116 ICreateTypeInfo2_fnAddVarDesc
,
4117 ICreateTypeInfo2_fnSetFuncAndParamNames
,
4118 ICreateTypeInfo2_fnSetVarName
,
4119 ICreateTypeInfo2_fnSetTypeDescAlias
,
4120 ICreateTypeInfo2_fnDefineFuncAsDllEntry
,
4121 ICreateTypeInfo2_fnSetFuncDocString
,
4122 ICreateTypeInfo2_fnSetVarDocString
,
4123 ICreateTypeInfo2_fnSetFuncHelpContext
,
4124 ICreateTypeInfo2_fnSetVarHelpContext
,
4125 ICreateTypeInfo2_fnSetMops
,
4126 ICreateTypeInfo2_fnSetTypeIdldesc
,
4127 ICreateTypeInfo2_fnLayOut
,
4129 ICreateTypeInfo2_fnDeleteFuncDesc
,
4130 ICreateTypeInfo2_fnDeleteFuncDescByMemId
,
4131 ICreateTypeInfo2_fnDeleteVarDesc
,
4132 ICreateTypeInfo2_fnDeleteVarDescByMemId
,
4133 ICreateTypeInfo2_fnDeleteImplType
,
4134 ICreateTypeInfo2_fnSetCustData
,
4135 ICreateTypeInfo2_fnSetFuncCustData
,
4136 ICreateTypeInfo2_fnSetParamCustData
,
4137 ICreateTypeInfo2_fnSetVarCustData
,
4138 ICreateTypeInfo2_fnSetImplTypeCustData
,
4139 ICreateTypeInfo2_fnSetHelpStringContext
,
4140 ICreateTypeInfo2_fnSetFuncHelpStringContext
,
4141 ICreateTypeInfo2_fnSetVarHelpStringContext
,
4142 ICreateTypeInfo2_fnInvalidate
,
4143 ICreateTypeInfo2_fnSetName
4146 static const ITypeInfo2Vtbl typeinfo2vt
=
4149 ITypeInfo2_fnQueryInterface
,
4150 ITypeInfo2_fnAddRef
,
4151 ITypeInfo2_fnRelease
,
4153 ITypeInfo2_fnGetTypeAttr
,
4154 ITypeInfo2_fnGetTypeComp
,
4155 ITypeInfo2_fnGetFuncDesc
,
4156 ITypeInfo2_fnGetVarDesc
,
4157 ITypeInfo2_fnGetNames
,
4158 ITypeInfo2_fnGetRefTypeOfImplType
,
4159 ITypeInfo2_fnGetImplTypeFlags
,
4160 ITypeInfo2_fnGetIDsOfNames
,
4161 ITypeInfo2_fnInvoke
,
4162 ITypeInfo2_fnGetDocumentation
,
4163 ITypeInfo2_fnGetDllEntry
,
4164 ITypeInfo2_fnGetRefTypeInfo
,
4165 ITypeInfo2_fnAddressOfMember
,
4166 ITypeInfo2_fnCreateInstance
,
4167 ITypeInfo2_fnGetMops
,
4168 ITypeInfo2_fnGetContainingTypeLib
,
4169 ITypeInfo2_fnReleaseTypeAttr
,
4170 ITypeInfo2_fnReleaseFuncDesc
,
4171 ITypeInfo2_fnReleaseVarDesc
,
4173 ITypeInfo2_fnGetTypeKind
,
4174 ITypeInfo2_fnGetTypeFlags
,
4175 ITypeInfo2_fnGetFuncIndexOfMemId
,
4176 ITypeInfo2_fnGetVarIndexOfMemId
,
4177 ITypeInfo2_fnGetCustData
,
4178 ITypeInfo2_fnGetFuncCustData
,
4179 ITypeInfo2_fnGetParamCustData
,
4180 ITypeInfo2_fnGetVarCustData
,
4181 ITypeInfo2_fnGetImplTypeCustData
,
4182 ITypeInfo2_fnGetDocumentation2
,
4183 ITypeInfo2_fnGetAllCustData
,
4184 ITypeInfo2_fnGetAllFuncCustData
,
4185 ITypeInfo2_fnGetAllParamCustData
,
4186 ITypeInfo2_fnGetAllVarCustData
,
4187 ITypeInfo2_fnGetAllImplTypeCustData
,
4190 static ICreateTypeInfo2
*ICreateTypeInfo2_Constructor(ICreateTypeLib2Impl
*typelib
, WCHAR
*szName
, TYPEKIND tkind
)
4192 ICreateTypeInfo2Impl
*pCreateTypeInfo2Impl
;
4195 int typeinfo_offset
;
4196 MSFT_TypeInfoBase
*typeinfo
;
4198 TRACE("Constructing ICreateTypeInfo2 for %s with tkind %d\n", debugstr_w(szName
), tkind
);
4200 pCreateTypeInfo2Impl
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(ICreateTypeInfo2Impl
));
4201 if (!pCreateTypeInfo2Impl
) return NULL
;
4203 pCreateTypeInfo2Impl
->lpVtbl
= &ctypeinfo2vt
;
4204 pCreateTypeInfo2Impl
->lpVtblTypeInfo2
= &typeinfo2vt
;
4205 pCreateTypeInfo2Impl
->ref
= 1;
4207 pCreateTypeInfo2Impl
->typelib
= typelib
;
4208 ICreateTypeLib_AddRef((ICreateTypeLib
*)typelib
);
4210 nameoffset
= ctl2_alloc_name(typelib
, szName
);
4211 typeinfo_offset
= ctl2_alloc_typeinfo(typelib
, nameoffset
);
4212 typeinfo
= (MSFT_TypeInfoBase
*)&typelib
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][typeinfo_offset
];
4214 typelib
->typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
+ 9] = 0x38;
4215 *((int *)&typelib
->typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
]) = typeinfo_offset
;
4217 pCreateTypeInfo2Impl
->typeinfo
= typeinfo
;
4219 pCreateTypeInfo2Impl
->typekind
= tkind
;
4220 typeinfo
->typekind
|= tkind
| 0x20;
4221 ICreateTypeInfo2_SetAlignment((ICreateTypeInfo2
*)pCreateTypeInfo2Impl
, 4);
4225 case TKIND_INTERFACE
:
4226 case TKIND_DISPATCH
:
4241 typeinfo
->size
= -0x75;
4245 FIXME("(%s,%d), unrecognized typekind %d\n", debugstr_w(szName
), tkind
, tkind
);
4246 typeinfo
->size
= 0xdeadbeef;
4250 if (typelib
->last_typeinfo
) typelib
->last_typeinfo
->next_typeinfo
= pCreateTypeInfo2Impl
;
4251 typelib
->last_typeinfo
= pCreateTypeInfo2Impl
;
4252 if (!typelib
->typeinfos
) typelib
->typeinfos
= pCreateTypeInfo2Impl
;
4254 TRACE(" -- %p\n", pCreateTypeInfo2Impl
);
4256 return (ICreateTypeInfo2
*)pCreateTypeInfo2Impl
;
4260 /*================== ICreateTypeLib2 Implementation ===================================*/
4262 /******************************************************************************
4263 * ICreateTypeLib2_QueryInterface {OLEAUT32}
4265 * See IUnknown_QueryInterface.
4267 static HRESULT WINAPI
ICreateTypeLib2_fnQueryInterface(
4268 ICreateTypeLib2
* iface
,
4272 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4274 TRACE("(%p)->(IID: %s)\n",This
,debugstr_guid(riid
));
4277 if(IsEqualIID(riid
, &IID_IUnknown
) ||
4278 IsEqualIID(riid
,&IID_ICreateTypeLib
)||
4279 IsEqualIID(riid
,&IID_ICreateTypeLib2
))
4282 } else if (IsEqualIID(riid
, &IID_ITypeLib
) ||
4283 IsEqualIID(riid
, &IID_ITypeLib2
)) {
4284 *ppvObject
= &This
->lpVtblTypeLib2
;
4289 ICreateTypeLib2_AddRef(iface
);
4290 TRACE("-- Interface: (%p)->(%p)\n",ppvObject
,*ppvObject
);
4293 TRACE("-- Interface: E_NOINTERFACE\n");
4294 return E_NOINTERFACE
;
4297 /******************************************************************************
4298 * ICreateTypeLib2_AddRef {OLEAUT32}
4300 * See IUnknown_AddRef.
4302 static ULONG WINAPI
ICreateTypeLib2_fnAddRef(ICreateTypeLib2
*iface
)
4304 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4305 ULONG ref
= InterlockedIncrement(&This
->ref
);
4307 TRACE("(%p)->ref was %u\n",This
, ref
- 1);
4312 /******************************************************************************
4313 * ICreateTypeLib2_Release {OLEAUT32}
4315 * See IUnknown_Release.
4317 static ULONG WINAPI
ICreateTypeLib2_fnRelease(ICreateTypeLib2
*iface
)
4319 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4320 ULONG ref
= InterlockedDecrement(&This
->ref
);
4322 TRACE("(%p)->(%u)\n",This
, ref
);
4327 for (i
= 0; i
< MSFT_SEG_MAX
; i
++) {
4328 HeapFree(GetProcessHeap(), 0, This
->typelib_segment_data
[i
]);
4329 This
->typelib_segment_data
[i
] = NULL
;
4332 HeapFree(GetProcessHeap(), 0, This
->filename
);
4333 This
->filename
= NULL
;
4335 while (This
->typeinfos
) {
4336 ICreateTypeInfo2Impl
*typeinfo
= This
->typeinfos
;
4337 This
->typeinfos
= typeinfo
->next_typeinfo
;
4338 if(typeinfo
->typedata
) {
4339 CyclicList
*iter
, *rem
;
4341 rem
= typeinfo
->typedata
->next
;
4342 typeinfo
->typedata
->next
= NULL
;
4344 HeapFree(GetProcessHeap(), 0, rem
);
4349 HeapFree(GetProcessHeap(), 0, rem
->u
.data
);
4350 HeapFree(GetProcessHeap(), 0, rem
);
4354 HeapFree(GetProcessHeap(), 0, typeinfo
->dual
);
4355 HeapFree(GetProcessHeap(), 0, typeinfo
);
4358 HeapFree(GetProcessHeap(),0,This
);
4366 /******************************************************************************
4367 * ICreateTypeLib2_CreateTypeInfo {OLEAUT32}
4369 * See ICreateTypeLib_CreateTypeInfo.
4371 static HRESULT WINAPI
ICreateTypeLib2_fnCreateTypeInfo(
4372 ICreateTypeLib2
* iface
,
4375 ICreateTypeInfo
**ppCTInfo
)
4377 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4380 TRACE("(%p,%s,%d,%p)\n", iface
, debugstr_w(szName
), tkind
, ppCTInfo
);
4382 ctl2_encode_name(This
, szName
, &name
);
4383 if(ctl2_find_name(This
, name
) != -1)
4384 return TYPE_E_NAMECONFLICT
;
4386 *ppCTInfo
= (ICreateTypeInfo
*)ICreateTypeInfo2_Constructor(This
, szName
, tkind
);
4388 if (!*ppCTInfo
) return E_OUTOFMEMORY
;
4393 /******************************************************************************
4394 * ICreateTypeLib2_SetName {OLEAUT32}
4396 * See ICreateTypeLib_SetName.
4398 static HRESULT WINAPI
ICreateTypeLib2_fnSetName(
4399 ICreateTypeLib2
* iface
,
4402 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4406 TRACE("(%p,%s)\n", iface
, debugstr_w(szName
));
4408 offset
= ctl2_alloc_name(This
, szName
);
4409 if (offset
== -1) return E_OUTOFMEMORY
;
4410 This
->typelib_header
.NameOffset
= offset
;
4414 /******************************************************************************
4415 * ICreateTypeLib2_SetVersion {OLEAUT32}
4417 * See ICreateTypeLib_SetVersion.
4419 static HRESULT WINAPI
ICreateTypeLib2_fnSetVersion(ICreateTypeLib2
* iface
, WORD wMajorVerNum
, WORD wMinorVerNum
)
4421 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4423 TRACE("(%p,%d,%d)\n", iface
, wMajorVerNum
, wMinorVerNum
);
4425 This
->typelib_header
.version
= wMajorVerNum
| (wMinorVerNum
<< 16);
4429 /******************************************************************************
4430 * ICreateTypeLib2_SetGuid {OLEAUT32}
4432 * See ICreateTypeLib_SetGuid.
4434 static HRESULT WINAPI
ICreateTypeLib2_fnSetGuid(ICreateTypeLib2
* iface
, REFGUID guid
)
4436 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4438 MSFT_GuidEntry guidentry
;
4441 TRACE("(%p,%s)\n", iface
, debugstr_guid(guid
));
4443 guidentry
.guid
= *guid
;
4444 guidentry
.hreftype
= -2;
4445 guidentry
.next_hash
= -1;
4447 offset
= ctl2_alloc_guid(This
, &guidentry
);
4449 if (offset
== -1) return E_OUTOFMEMORY
;
4451 This
->typelib_header
.posguid
= offset
;
4456 /******************************************************************************
4457 * ICreateTypeLib2_SetDocString {OLEAUT32}
4459 * See ICreateTypeLib_SetDocString.
4461 static HRESULT WINAPI
ICreateTypeLib2_fnSetDocString(ICreateTypeLib2
* iface
, LPOLESTR szDoc
)
4463 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4467 TRACE("(%p,%s)\n", iface
, debugstr_w(szDoc
));
4469 return E_INVALIDARG
;
4471 offset
= ctl2_alloc_string(This
, szDoc
);
4472 if (offset
== -1) return E_OUTOFMEMORY
;
4473 This
->typelib_header
.helpstring
= offset
;
4477 /******************************************************************************
4478 * ICreateTypeLib2_SetHelpFileName {OLEAUT32}
4480 * See ICreateTypeLib_SetHelpFileName.
4482 static HRESULT WINAPI
ICreateTypeLib2_fnSetHelpFileName(ICreateTypeLib2
* iface
, LPOLESTR szHelpFileName
)
4484 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4488 TRACE("(%p,%s)\n", iface
, debugstr_w(szHelpFileName
));
4490 offset
= ctl2_alloc_string(This
, szHelpFileName
);
4491 if (offset
== -1) return E_OUTOFMEMORY
;
4492 This
->typelib_header
.helpfile
= offset
;
4493 This
->typelib_header
.varflags
|= 0x10;
4497 /******************************************************************************
4498 * ICreateTypeLib2_SetHelpContext {OLEAUT32}
4500 * See ICreateTypeLib_SetHelpContext.
4502 static HRESULT WINAPI
ICreateTypeLib2_fnSetHelpContext(ICreateTypeLib2
* iface
, DWORD dwHelpContext
)
4504 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4506 TRACE("(%p,%d)\n", iface
, dwHelpContext
);
4507 This
->typelib_header
.helpcontext
= dwHelpContext
;
4511 /******************************************************************************
4512 * ICreateTypeLib2_SetLcid {OLEAUT32}
4514 * Sets both the lcid and lcid2 members in the header to lcid.
4516 * As a special case if lcid == LOCALE_NEUTRAL (0), then the first header lcid
4517 * is set to US English while the second one is set to 0.
4519 static HRESULT WINAPI
ICreateTypeLib2_fnSetLcid(ICreateTypeLib2
* iface
, LCID lcid
)
4521 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4523 TRACE("(%p,%d)\n", iface
, lcid
);
4525 This
->typelib_header
.lcid
= This
->typelib_header
.lcid2
= lcid
;
4527 if(lcid
== LOCALE_NEUTRAL
) This
->typelib_header
.lcid
= MAKELANGID(LANG_ENGLISH
, SUBLANG_ENGLISH_US
);
4532 /******************************************************************************
4533 * ICreateTypeLib2_SetLibFlags {OLEAUT32}
4535 * See ICreateTypeLib_SetLibFlags.
4537 static HRESULT WINAPI
ICreateTypeLib2_fnSetLibFlags(ICreateTypeLib2
* iface
, UINT uLibFlags
)
4539 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4541 TRACE("(%p,0x%x)\n", iface
, uLibFlags
);
4543 This
->typelib_header
.flags
= uLibFlags
;
4548 static int ctl2_write_chunk(HANDLE hFile
, const void *segment
, int length
)
4551 if (!WriteFile(hFile
, segment
, length
, &dwWritten
, 0)) {
4558 static int ctl2_write_segment(ICreateTypeLib2Impl
*This
, HANDLE hFile
, int segment
)
4561 if (!WriteFile(hFile
, This
->typelib_segment_data
[segment
],
4562 This
->typelib_segdir
[segment
].length
, &dwWritten
, 0)) {
4570 static HRESULT
ctl2_finalize_typeinfos(ICreateTypeLib2Impl
*This
, int filesize
)
4572 ICreateTypeInfo2Impl
*typeinfo
;
4575 for (typeinfo
= This
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
4576 typeinfo
->typeinfo
->memoffset
= filesize
;
4578 hres
= ICreateTypeInfo2_fnLayOut((ICreateTypeInfo2
*)typeinfo
);
4582 if (typeinfo
->typedata
)
4583 filesize
+= typeinfo
->typedata
->next
->u
.val
4584 + ((typeinfo
->typeinfo
->cElement
>> 16) * 12)
4585 + ((typeinfo
->typeinfo
->cElement
& 0xffff) * 12) + 4;
4591 static int ctl2_finalize_segment(ICreateTypeLib2Impl
*This
, int filepos
, int segment
)
4593 if (This
->typelib_segdir
[segment
].length
) {
4594 This
->typelib_segdir
[segment
].offset
= filepos
;
4596 This
->typelib_segdir
[segment
].offset
= -1;
4599 return This
->typelib_segdir
[segment
].length
;
4602 static void ctl2_write_typeinfos(ICreateTypeLib2Impl
*This
, HANDLE hFile
)
4604 ICreateTypeInfo2Impl
*typeinfo
;
4606 for (typeinfo
= This
->typeinfos
; typeinfo
; typeinfo
= typeinfo
->next_typeinfo
) {
4610 if (!typeinfo
->typedata
) continue;
4612 iter
= typeinfo
->typedata
->next
;
4613 ctl2_write_chunk(hFile
, &iter
->u
.val
, sizeof(int));
4614 for(iter
=iter
->next
; iter
!=typeinfo
->typedata
->next
; iter
=iter
->next
)
4615 ctl2_write_chunk(hFile
, iter
->u
.data
, iter
->u
.data
[0] & 0xffff);
4617 for(iter
=typeinfo
->typedata
->next
->next
; iter
!=typeinfo
->typedata
->next
; iter
=iter
->next
)
4618 ctl2_write_chunk(hFile
, &iter
->indice
, sizeof(int));
4620 for(iter
=typeinfo
->typedata
->next
->next
; iter
!=typeinfo
->typedata
->next
; iter
=iter
->next
)
4621 ctl2_write_chunk(hFile
, &iter
->name
, sizeof(int));
4623 for(iter
=typeinfo
->typedata
->next
->next
; iter
!=typeinfo
->typedata
->next
; iter
=iter
->next
) {
4624 ctl2_write_chunk(hFile
, &offset
, sizeof(int));
4625 offset
+= iter
->u
.data
[0] & 0xffff;
4630 /******************************************************************************
4631 * ICreateTypeLib2_SaveAllChanges {OLEAUT32}
4633 * See ICreateTypeLib_SaveAllChanges.
4635 static HRESULT WINAPI
ICreateTypeLib2_fnSaveAllChanges(ICreateTypeLib2
* iface
)
4637 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4644 TRACE("(%p)\n", iface
);
4646 retval
= TYPE_E_IOERROR
;
4648 hFile
= CreateFileW(This
->filename
, GENERIC_WRITE
, 0, NULL
, CREATE_ALWAYS
, FILE_ATTRIBUTE_NORMAL
, 0);
4649 if (hFile
== INVALID_HANDLE_VALUE
) return retval
;
4651 filepos
= sizeof(MSFT_Header
) + sizeof(MSFT_SegDir
);
4652 filepos
+= This
->typelib_header
.nrtypeinfos
* 4;
4654 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_TYPEINFO
);
4655 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_GUIDHASH
);
4656 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_GUID
);
4657 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_REFERENCES
);
4658 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_IMPORTINFO
);
4659 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_IMPORTFILES
);
4660 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_NAMEHASH
);
4661 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_NAME
);
4662 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_STRING
);
4663 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_TYPEDESC
);
4664 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_ARRAYDESC
);
4665 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_CUSTDATA
);
4666 filepos
+= ctl2_finalize_segment(This
, filepos
, MSFT_SEG_CUSTDATAGUID
);
4668 hres
= ctl2_finalize_typeinfos(This
, filepos
);
4674 if (!ctl2_write_chunk(hFile
, &This
->typelib_header
, sizeof(This
->typelib_header
))) return retval
;
4675 if (This
->typelib_header
.varflags
& HELPDLLFLAG
)
4676 if (!ctl2_write_chunk(hFile
, &This
->helpStringDll
, sizeof(This
->helpStringDll
))) return retval
;
4677 if (!ctl2_write_chunk(hFile
, This
->typelib_typeinfo_offsets
, This
->typelib_header
.nrtypeinfos
* 4)) return retval
;
4678 if (!ctl2_write_chunk(hFile
, This
->typelib_segdir
, sizeof(This
->typelib_segdir
))) return retval
;
4679 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_TYPEINFO
)) return retval
;
4680 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_GUIDHASH
)) return retval
;
4681 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_GUID
)) return retval
;
4682 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_REFERENCES
)) return retval
;
4683 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_IMPORTINFO
)) return retval
;
4684 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_IMPORTFILES
)) return retval
;
4685 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_NAMEHASH
)) return retval
;
4686 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_NAME
)) return retval
;
4687 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_STRING
)) return retval
;
4688 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_TYPEDESC
)) return retval
;
4689 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_ARRAYDESC
)) return retval
;
4690 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_CUSTDATA
)) return retval
;
4691 if (!ctl2_write_segment(This
, hFile
, MSFT_SEG_CUSTDATAGUID
)) return retval
;
4693 ctl2_write_typeinfos(This
, hFile
);
4695 if (!CloseHandle(hFile
)) return retval
;
4701 /******************************************************************************
4702 * ICreateTypeLib2_DeleteTypeInfo {OLEAUT32}
4704 * Deletes a named TypeInfo from a type library.
4709 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
4711 static HRESULT WINAPI
ICreateTypeLib2_fnDeleteTypeInfo(
4712 ICreateTypeLib2
* iface
, /* [I] The type library to delete from. */
4713 LPOLESTR szName
) /* [I] The name of the typeinfo to delete. */
4715 FIXME("(%p,%s), stub!\n", iface
, debugstr_w(szName
));
4716 return E_OUTOFMEMORY
;
4719 /******************************************************************************
4720 * ICreateTypeLib2_SetCustData {OLEAUT32}
4722 * Sets custom data for a type library.
4727 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
4729 static HRESULT WINAPI
ICreateTypeLib2_fnSetCustData(
4730 ICreateTypeLib2
* iface
, /* [I] The type library to store the custom data in. */
4731 REFGUID guid
, /* [I] The GUID used as a key to retrieve the custom data. */
4732 VARIANT
*pVarVal
) /* [I] The custom data itself. */
4734 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4736 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(guid
), pVarVal
);
4738 return ctl2_set_custdata(This
, guid
, pVarVal
, &This
->typelib_header
.CustomDataOffset
);
4741 /******************************************************************************
4742 * ICreateTypeLib2_SetHelpStringContext {OLEAUT32}
4744 * Sets a context number for the library help string.
4747 * iface [I] The type library to set the help string context for.
4748 * dwContext [I] The help string context.
4752 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
4755 HRESULT WINAPI
ICreateTypeLib2_fnSetHelpStringContext(ICreateTypeLib2
* iface
,
4758 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4760 TRACE("(%p,%d)\n", iface
, dwContext
);
4762 This
->typelib_header
.helpstringcontext
= dwContext
;
4766 /******************************************************************************
4767 * ICreateTypeLib2_SetHelpStringDll {OLEAUT32}
4769 * Set the DLL used to look up localized help strings.
4772 * iface [I] The type library to set the help DLL for.
4773 * szDllName [I] The name of the help DLL.
4777 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
4780 HRESULT WINAPI
ICreateTypeLib2_fnSetHelpStringDll(ICreateTypeLib2
* iface
,
4783 ICreateTypeLib2Impl
*This
= (ICreateTypeLib2Impl
*)iface
;
4786 TRACE("(%p,%s)\n", iface
, debugstr_w(szDllName
));
4788 return E_INVALIDARG
;
4790 offset
= ctl2_alloc_string(This
, szDllName
);
4792 return E_OUTOFMEMORY
;
4793 This
->typelib_header
.varflags
|= HELPDLLFLAG
;
4794 This
->helpStringDll
= offset
;
4798 /*================== ITypeLib2 Implementation ===================================*/
4800 /******************************************************************************
4801 * ITypeLib2_QueryInterface {OLEAUT32}
4803 * See IUnknown_QueryInterface.
4805 static HRESULT WINAPI
ITypeLib2_fnQueryInterface(ITypeLib2
* iface
, REFIID riid
, LPVOID
* ppv
)
4807 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4809 return ICreateTypeLib2_QueryInterface((ICreateTypeLib2
*)This
, riid
, ppv
);
4812 /******************************************************************************
4813 * ITypeLib2_AddRef {OLEAUT32}
4815 * See IUnknown_AddRef.
4817 static ULONG WINAPI
ITypeLib2_fnAddRef(ITypeLib2
* iface
)
4819 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4821 return ICreateTypeLib2_AddRef((ICreateTypeLib2
*)This
);
4824 /******************************************************************************
4825 * ITypeLib2_Release {OLEAUT32}
4827 * See IUnknown_Release.
4829 static ULONG WINAPI
ITypeLib2_fnRelease(ITypeLib2
* iface
)
4831 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4833 return ICreateTypeLib2_Release((ICreateTypeLib2
*)This
);
4836 /******************************************************************************
4837 * ITypeLib2_GetTypeInfoCount {OLEAUT32}
4839 * See ITypeLib_GetTypeInfoCount.
4841 static UINT WINAPI
ITypeLib2_fnGetTypeInfoCount(
4844 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4846 TRACE("(%p)\n", iface
);
4848 return This
->typelib_header
.nrtypeinfos
;
4851 /******************************************************************************
4852 * ITypeLib2_GetTypeInfo {OLEAUT32}
4854 * See ITypeLib_GetTypeInfo.
4856 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfo(
4859 ITypeInfo
** ppTInfo
)
4861 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4863 TRACE("(%p,%d,%p)\n", iface
, index
, ppTInfo
);
4865 if (index
>= This
->typelib_header
.nrtypeinfos
) {
4866 return TYPE_E_ELEMENTNOTFOUND
;
4869 return ctl2_find_typeinfo_from_offset(This
, This
->typelib_typeinfo_offsets
[index
], ppTInfo
);
4872 /******************************************************************************
4873 * ITypeLib2_GetTypeInfoType {OLEAUT32}
4875 * See ITypeLib_GetTypeInfoType.
4877 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfoType(
4882 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4884 TRACE("(%p,%d,%p)\n", iface
, index
, pTKind
);
4886 if (index
>= This
->typelib_header
.nrtypeinfos
) {
4887 return TYPE_E_ELEMENTNOTFOUND
;
4890 *pTKind
= (This
->typelib_segment_data
[MSFT_SEG_TYPEINFO
][This
->typelib_typeinfo_offsets
[index
]]) & 15;
4895 /******************************************************************************
4896 * ITypeLib2_GetTypeInfoOfGuid {OLEAUT32}
4898 * See ITypeLib_GetTypeInfoOfGuid.
4900 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfoOfGuid(
4903 ITypeInfo
** ppTinfo
)
4905 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4910 TRACE("(%p,%s,%p)\n", iface
, debugstr_guid(guid
), ppTinfo
);
4912 guidoffset
= ctl2_find_guid(This
, ctl2_hash_guid(guid
), guid
);
4913 if (guidoffset
== -1) return TYPE_E_ELEMENTNOTFOUND
;
4915 typeinfo
= ((MSFT_GuidEntry
*)&This
->typelib_segment_data
[MSFT_SEG_GUID
][guidoffset
])->hreftype
;
4916 if (typeinfo
< 0) return TYPE_E_ELEMENTNOTFOUND
;
4918 return ctl2_find_typeinfo_from_offset(This
, typeinfo
, ppTinfo
);
4921 /******************************************************************************
4922 * ITypeLib2_GetLibAttr {OLEAUT32}
4924 * See ITypeLib_GetLibAttr.
4926 static HRESULT WINAPI
ITypeLib2_fnGetLibAttr(
4928 TLIBATTR
** ppTLibAttr
)
4930 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4932 TRACE("(%p,%p)\n", This
, ppTLibAttr
);
4935 return E_INVALIDARG
;
4937 *ppTLibAttr
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(TLIBATTR
));
4939 return E_OUTOFMEMORY
;
4941 if(This
->typelib_header
.posguid
!= -1) {
4942 MSFT_GuidEntry
*guid
;
4944 guid
= (MSFT_GuidEntry
*)&This
->typelib_segment_data
[MSFT_SEG_GUID
][This
->typelib_header
.posguid
];
4945 (*ppTLibAttr
)->guid
= guid
->guid
;
4948 (*ppTLibAttr
)->lcid
= This
->typelib_header
.lcid
;
4949 (*ppTLibAttr
)->syskind
= This
->typelib_header
.varflags
&0x3;
4950 (*ppTLibAttr
)->wMajorVerNum
= This
->typelib_header
.version
&0xffff;
4951 (*ppTLibAttr
)->wMinorVerNum
= This
->typelib_header
.version
>>16;
4952 (*ppTLibAttr
)->wLibFlags
= This
->typelib_header
.flags
;
4956 /******************************************************************************
4957 * ITypeLib2_GetTypeComp {OLEAUT32}
4959 * See ITypeLib_GetTypeComp.
4961 static HRESULT WINAPI
ITypeLib2_fnGetTypeComp(
4963 ITypeComp
** ppTComp
)
4965 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4967 FIXME("(%p,%p), stub!\n", This
, ppTComp
);
4969 return E_OUTOFMEMORY
;
4972 /******************************************************************************
4973 * ITypeLib2_GetDocumentation {OLEAUT32}
4975 * See ITypeLib_GetDocumentation.
4977 static HRESULT WINAPI
ITypeLib2_fnGetDocumentation(
4981 BSTR
* pBstrDocString
,
4982 DWORD
* pdwHelpContext
,
4983 BSTR
* pBstrHelpFile
)
4985 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
4988 TRACE("(%p,%d,%p,%p,%p,%p)\n", This
, index
, pBstrName
, pBstrDocString
, pdwHelpContext
, pBstrHelpFile
);
4991 ICreateTypeInfo2Impl
*iter
;
4993 for(iter
=This
->typeinfos
; iter
!=NULL
&& index
!=0; iter
=iter
->next_typeinfo
)
4997 return TYPE_E_ELEMENTNOTFOUND
;
4999 return ITypeInfo_GetDocumentation((ITypeInfo
*)&iter
->lpVtblTypeInfo2
,
5000 -1, pBstrName
, pBstrDocString
, pdwHelpContext
, pBstrHelpFile
);
5004 if(This
->typelib_header
.NameOffset
== -1)
5007 MSFT_NameIntro
*name
= (MSFT_NameIntro
*)&This
->
5008 typelib_segment_data
[MSFT_SEG_NAME
][This
->typelib_header
.NameOffset
];
5010 ctl2_decode_name((char*)&name
->namelen
, &string
);
5012 *pBstrName
= SysAllocString(string
);
5014 return E_OUTOFMEMORY
;
5018 if(pBstrDocString
) {
5019 if(This
->typelib_header
.helpstring
== -1)
5020 *pBstrDocString
= NULL
;
5022 ctl2_decode_string(&This
->typelib_segment_data
[MSFT_SEG_STRING
][This
->typelib_header
.helpstring
], &string
);
5024 *pBstrDocString
= SysAllocString(string
);
5025 if(!*pBstrDocString
) {
5026 if(pBstrName
) SysFreeString(*pBstrName
);
5027 return E_OUTOFMEMORY
;
5033 *pdwHelpContext
= This
->typelib_header
.helpcontext
;
5036 if(This
->typelib_header
.helpfile
== -1)
5037 *pBstrHelpFile
= NULL
;
5039 ctl2_decode_string(&This
->typelib_segment_data
[MSFT_SEG_STRING
][This
->typelib_header
.helpfile
], &string
);
5041 *pBstrHelpFile
= SysAllocString(string
);
5042 if(!*pBstrHelpFile
) {
5043 if(pBstrName
) SysFreeString(*pBstrName
);
5044 if(pBstrDocString
) SysFreeString(*pBstrDocString
);
5045 return E_OUTOFMEMORY
;
5053 /******************************************************************************
5054 * ITypeLib2_IsName {OLEAUT32}
5056 * See ITypeLib_IsName.
5058 static HRESULT WINAPI
ITypeLib2_fnIsName(
5064 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5068 MSFT_NameIntro
*nameintro
;
5070 TRACE("(%p,%s,%x,%p)\n", iface
, debugstr_w(szNameBuf
), lHashVal
, pfName
);
5072 ctl2_encode_name(This
, szNameBuf
, &encoded_name
);
5073 nameoffset
= ctl2_find_name(This
, encoded_name
);
5077 if (nameoffset
== -1) return S_OK
;
5079 nameintro
= (MSFT_NameIntro
*)(&This
->typelib_segment_data
[MSFT_SEG_NAME
][nameoffset
]);
5080 if (nameintro
->hreftype
== -1) return S_OK
;
5084 FIXME("Should be decoding our copy of the name over szNameBuf.\n");
5089 /******************************************************************************
5090 * ITypeLib2_FindName {OLEAUT32}
5092 * See ITypeLib_FindName.
5094 static HRESULT WINAPI
ITypeLib2_fnFindName(
5098 ITypeInfo
** ppTInfo
,
5102 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5104 FIXME("(%p,%s,%x,%p,%p,%p), stub!\n", This
, debugstr_w(szNameBuf
), lHashVal
, ppTInfo
, rgMemId
, pcFound
);
5106 return E_OUTOFMEMORY
;
5109 /******************************************************************************
5110 * ITypeLib2_ReleaseTLibAttr {OLEAUT32}
5112 * See ITypeLib_ReleaseTLibAttr.
5114 static void WINAPI
ITypeLib2_fnReleaseTLibAttr(
5116 TLIBATTR
* pTLibAttr
)
5118 TRACE("(%p,%p)\n", iface
, pTLibAttr
);
5120 HeapFree(GetProcessHeap(), 0, pTLibAttr
);
5123 /******************************************************************************
5124 * ICreateTypeLib2_GetCustData {OLEAUT32}
5126 * Retrieves a custom data value stored on a type library.
5131 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
5133 static HRESULT WINAPI
ITypeLib2_fnGetCustData(
5134 ITypeLib2
* iface
, /* [I] The type library in which to find the custom data. */
5135 REFGUID guid
, /* [I] The GUID under which the custom data is stored. */
5136 VARIANT
* pVarVal
) /* [O] The custom data. */
5138 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5140 FIXME("(%p,%s,%p), stub!\n", This
, debugstr_guid(guid
), pVarVal
);
5142 return E_OUTOFMEMORY
;
5145 /******************************************************************************
5146 * ICreateTypeLib2_GetLibStatistics {OLEAUT32}
5148 * Retrieves some statistics about names in a type library, supposedly for
5149 * hash table optimization purposes.
5154 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
5156 static HRESULT WINAPI
ITypeLib2_fnGetLibStatistics(
5157 ITypeLib2
* iface
, /* [I] The type library to get statistics about. */
5158 ULONG
* pcUniqueNames
, /* [O] The number of unique names in the type library. */
5159 ULONG
* pcchUniqueNames
) /* [O] The number of changed (?) characters in names in the type library. */
5161 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5163 FIXME("(%p,%p,%p), stub!\n", This
, pcUniqueNames
, pcchUniqueNames
);
5165 return E_OUTOFMEMORY
;
5168 /******************************************************************************
5169 * ICreateTypeLib2_GetDocumentation2 {OLEAUT32}
5171 * Obtain locale-aware help string information.
5176 * Failure: STG_E_INSUFFICIENTMEMORY or E_INVALIDARG.
5178 static HRESULT WINAPI
ITypeLib2_fnGetDocumentation2(
5182 BSTR
* pbstrHelpString
,
5183 DWORD
* pdwHelpStringContext
,
5184 BSTR
* pbstrHelpStringDll
)
5186 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5188 FIXME("(%p,%d,%d,%p,%p,%p), stub!\n", This
, index
, lcid
, pbstrHelpString
, pdwHelpStringContext
, pbstrHelpStringDll
);
5190 return E_OUTOFMEMORY
;
5193 /******************************************************************************
5194 * ICreateTypeLib2_GetAllCustData {OLEAUT32}
5196 * Retrieve all of the custom data for a type library.
5201 * Failure: E_OUTOFMEMORY or E_INVALIDARG.
5203 static HRESULT WINAPI
ITypeLib2_fnGetAllCustData(
5204 ITypeLib2
* iface
, /* [I] The type library in which to find the custom data. */
5205 CUSTDATA
* pCustData
) /* [O] The structure in which to place the custom data. */
5207 ICreateTypeLib2Impl
*This
= impl_from_ITypeLib2(iface
);
5209 FIXME("(%p,%p), stub!\n", This
, pCustData
);
5211 return E_OUTOFMEMORY
;
5215 /*================== ICreateTypeLib2 & ITypeLib2 VTABLEs And Creation ===================================*/
5217 static const ICreateTypeLib2Vtbl ctypelib2vt
=
5220 ICreateTypeLib2_fnQueryInterface
,
5221 ICreateTypeLib2_fnAddRef
,
5222 ICreateTypeLib2_fnRelease
,
5224 ICreateTypeLib2_fnCreateTypeInfo
,
5225 ICreateTypeLib2_fnSetName
,
5226 ICreateTypeLib2_fnSetVersion
,
5227 ICreateTypeLib2_fnSetGuid
,
5228 ICreateTypeLib2_fnSetDocString
,
5229 ICreateTypeLib2_fnSetHelpFileName
,
5230 ICreateTypeLib2_fnSetHelpContext
,
5231 ICreateTypeLib2_fnSetLcid
,
5232 ICreateTypeLib2_fnSetLibFlags
,
5233 ICreateTypeLib2_fnSaveAllChanges
,
5235 ICreateTypeLib2_fnDeleteTypeInfo
,
5236 ICreateTypeLib2_fnSetCustData
,
5237 ICreateTypeLib2_fnSetHelpStringContext
,
5238 ICreateTypeLib2_fnSetHelpStringDll
5241 static const ITypeLib2Vtbl typelib2vt
=
5244 ITypeLib2_fnQueryInterface
,
5246 ITypeLib2_fnRelease
,
5248 ITypeLib2_fnGetTypeInfoCount
,
5249 ITypeLib2_fnGetTypeInfo
,
5250 ITypeLib2_fnGetTypeInfoType
,
5251 ITypeLib2_fnGetTypeInfoOfGuid
,
5252 ITypeLib2_fnGetLibAttr
,
5253 ITypeLib2_fnGetTypeComp
,
5254 ITypeLib2_fnGetDocumentation
,
5256 ITypeLib2_fnFindName
,
5257 ITypeLib2_fnReleaseTLibAttr
,
5259 ITypeLib2_fnGetCustData
,
5260 ITypeLib2_fnGetLibStatistics
,
5261 ITypeLib2_fnGetDocumentation2
,
5262 ITypeLib2_fnGetAllCustData
,
5265 static ICreateTypeLib2
*ICreateTypeLib2_Constructor(SYSKIND syskind
, LPCOLESTR szFile
)
5267 ICreateTypeLib2Impl
*pCreateTypeLib2Impl
;
5270 TRACE("Constructing ICreateTypeLib2 (%d, %s)\n", syskind
, debugstr_w(szFile
));
5272 pCreateTypeLib2Impl
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(ICreateTypeLib2Impl
));
5273 if (!pCreateTypeLib2Impl
) return NULL
;
5275 pCreateTypeLib2Impl
->filename
= HeapAlloc(GetProcessHeap(), 0, (strlenW(szFile
) + 1) * sizeof(WCHAR
));
5276 if (!pCreateTypeLib2Impl
->filename
) {
5277 HeapFree(GetProcessHeap(), 0, pCreateTypeLib2Impl
);
5280 strcpyW(pCreateTypeLib2Impl
->filename
, szFile
);
5282 ctl2_init_header(pCreateTypeLib2Impl
);
5283 ctl2_init_segdir(pCreateTypeLib2Impl
);
5285 pCreateTypeLib2Impl
->typelib_header
.varflags
|= syskind
;
5288 * The following two calls return an offset or -1 if out of memory. We
5289 * specifically need an offset of 0, however, so...
5291 if (ctl2_alloc_segment(pCreateTypeLib2Impl
, MSFT_SEG_GUIDHASH
, 0x80, 0x80)) { failed
= 1; }
5292 if (ctl2_alloc_segment(pCreateTypeLib2Impl
, MSFT_SEG_NAMEHASH
, 0x200, 0x200)) { failed
= 1; }
5294 pCreateTypeLib2Impl
->typelib_guidhash_segment
= (int *)pCreateTypeLib2Impl
->typelib_segment_data
[MSFT_SEG_GUIDHASH
];
5295 pCreateTypeLib2Impl
->typelib_namehash_segment
= (int *)pCreateTypeLib2Impl
->typelib_segment_data
[MSFT_SEG_NAMEHASH
];
5297 memset(pCreateTypeLib2Impl
->typelib_guidhash_segment
, 0xff, 0x80);
5298 memset(pCreateTypeLib2Impl
->typelib_namehash_segment
, 0xff, 0x200);
5300 pCreateTypeLib2Impl
->lpVtbl
= &ctypelib2vt
;
5301 pCreateTypeLib2Impl
->lpVtblTypeLib2
= &typelib2vt
;
5302 pCreateTypeLib2Impl
->ref
= 1;
5305 ICreateTypeLib2_fnRelease((ICreateTypeLib2
*)pCreateTypeLib2Impl
);
5309 return (ICreateTypeLib2
*)pCreateTypeLib2Impl
;
5312 /******************************************************************************
5313 * CreateTypeLib2 [OLEAUT32.180]
5315 * Obtains an ICreateTypeLib2 object for creating a new-style (MSFT) type
5320 * See also CreateTypeLib.
5326 HRESULT WINAPI
CreateTypeLib2(
5327 SYSKIND syskind
, /* [I] System type library is for */
5328 LPCOLESTR szFile
, /* [I] Type library file name */
5329 ICreateTypeLib2
** ppctlib
) /* [O] Storage for object returned */
5331 TRACE("(%d,%s,%p)\n", syskind
, debugstr_w(szFile
), ppctlib
);
5333 if (!szFile
) return E_INVALIDARG
;
5334 *ppctlib
= ICreateTypeLib2_Constructor(syskind
, szFile
);
5335 return (*ppctlib
)? S_OK
: E_OUTOFMEMORY
;
5338 /******************************************************************************
5339 * ClearCustData (OLEAUT32.171)
5341 * Clear a custom data types' data.
5344 * lpCust [I] The custom data type instance
5349 void WINAPI
ClearCustData(LPCUSTDATA lpCust
)
5351 if (lpCust
&& lpCust
->cCustData
)
5353 if (lpCust
->prgCustData
)
5357 for (i
= 0; i
< lpCust
->cCustData
; i
++)
5358 VariantClear(&lpCust
->prgCustData
[i
].varValue
);
5360 /* FIXME - Should be using a per-thread IMalloc */
5361 HeapFree(GetProcessHeap(), 0, lpCust
->prgCustData
);
5362 lpCust
->prgCustData
= NULL
;
5364 lpCust
->cCustData
= 0;