4 * Copyright 1997 Marcus Meissner
6 * 2000 Francois Jacques
7 * 2001 Huw D M Davies for CodeWeavers
8 * 2005 Robert Shearman, for CodeWeavers
10 * This library is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU Lesser General Public
12 * License as published by the Free Software Foundation; either
13 * version 2.1 of the License, or (at your option) any later version.
15 * This library is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 * Lesser General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public
21 * License along with this library; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 * --------------------------------------------------------------------------------------
25 * Known problems (2000, Francois Jacques)
27 * - Tested using OLEVIEW (Platform SDK tool) only.
29 * - dual interface dispinterfaces. vtable-interface ITypeInfo instances are
30 * creating by doing a straight copy of the dispinterface instance and just changing
31 * its typekind. Pointed structures aren't copied - only the address of the pointers.
33 * - locale stuff is partially implemented but hasn't been tested.
35 * - typelib file is still read in its entirety, but it is released now.
37 * --------------------------------------------------------------------------------------
38 * Known problems left from previous implementation (1999, Rein Klazes) :
40 * -. Data structures are straightforward, but slow for look-ups.
41 * -. (related) nothing is hashed
42 * -. Most error return values are just guessed not checked with windows
44 * -. lousy fatal error handling
49 #include "wine/port.h"
58 #define NONAMELESSUNION
59 #define NONAMELESSSTRUCT
68 #include "wine/unicode.h"
71 #include "wine/debug.h"
73 #include "wine/list.h"
75 WINE_DEFAULT_DEBUG_CHANNEL(ole
);
76 WINE_DECLARE_DEBUG_CHANNEL(typelib
);
78 static HRESULT
typedescvt_to_variantvt(ITypeInfo
*tinfo
, const TYPEDESC
*tdesc
, VARTYPE
*vt
);
79 static HRESULT
TLB_AllocAndInitVarDesc(const VARDESC
*src
, VARDESC
**dest_ptr
);
81 /****************************************************************************
84 * Takes p_iVal (which is in little endian) and returns it
85 * in the host machine's byte order.
87 #ifdef WORDS_BIGENDIAN
88 static WORD
FromLEWord(WORD p_iVal
)
90 return (((p_iVal
& 0x00FF) << 8) |
91 ((p_iVal
& 0xFF00) >> 8));
95 static DWORD
FromLEDWord(DWORD p_iVal
)
97 return (((p_iVal
& 0x000000FF) << 24) |
98 ((p_iVal
& 0x0000FF00) << 8) |
99 ((p_iVal
& 0x00FF0000) >> 8) |
100 ((p_iVal
& 0xFF000000) >> 24));
103 #define FromLEWord(X) (X)
104 #define FromLEDWord(X) (X)
107 #define DISPATCH_HREF_OFFSET 0x01000000
108 #define DISPATCH_HREF_MASK 0xff000000
110 /****************************************************************************
113 * Fix byte order in any structure if necessary
115 #ifdef WORDS_BIGENDIAN
116 static void FromLEWords(void *p_Val
, int p_iSize
)
120 p_iSize
/= sizeof(WORD
);
123 *Val
= FromLEWord(*Val
);
130 static void FromLEDWords(void *p_Val
, int p_iSize
)
134 p_iSize
/= sizeof(DWORD
);
137 *Val
= FromLEDWord(*Val
);
143 #define FromLEWords(X,Y) /*nothing*/
144 #define FromLEDWords(X,Y) /*nothing*/
148 * Find a typelib key which matches a requested maj.min version.
150 static BOOL
find_typelib_key( REFGUID guid
, WORD wMaj
, WORD
*wMin
)
152 static const WCHAR typelibW
[] = {'T','y','p','e','l','i','b','\\',0};
159 memcpy( buffer
, typelibW
, sizeof(typelibW
) );
160 StringFromGUID2( guid
, buffer
+ strlenW(buffer
), 40 );
162 if (RegOpenKeyExW( HKEY_CLASSES_ROOT
, buffer
, 0, KEY_READ
, &hkey
) != ERROR_SUCCESS
)
165 len
= sizeof(key_name
);
167 while (RegEnumKeyExA(hkey
, i
++, key_name
, &len
, NULL
, NULL
, NULL
, NULL
) == ERROR_SUCCESS
)
171 if (sscanf(key_name
, "%x.%x", &v_maj
, &v_min
) == 2)
173 TRACE("found %s: %x.%x\n", debugstr_w(buffer
), v_maj
, v_min
);
180 break; /* exact match */
182 if (v_min
> best_min
) best_min
= v_min
;
185 len
= sizeof(key_name
);
196 /* get the path of a typelib key, in the form "Typelib\\<guid>\\<maj>.<min>" */
197 /* buffer must be at least 60 characters long */
198 static WCHAR
*get_typelib_key( REFGUID guid
, WORD wMaj
, WORD wMin
, WCHAR
*buffer
)
200 static const WCHAR TypelibW
[] = {'T','y','p','e','l','i','b','\\',0};
201 static const WCHAR VersionFormatW
[] = {'\\','%','x','.','%','x',0};
203 memcpy( buffer
, TypelibW
, sizeof(TypelibW
) );
204 StringFromGUID2( guid
, buffer
+ strlenW(buffer
), 40 );
205 sprintfW( buffer
+ strlenW(buffer
), VersionFormatW
, wMaj
, wMin
);
209 /* get the path of an interface key, in the form "Interface\\<guid>" */
210 /* buffer must be at least 50 characters long */
211 static WCHAR
*get_interface_key( REFGUID guid
, WCHAR
*buffer
)
213 static const WCHAR InterfaceW
[] = {'I','n','t','e','r','f','a','c','e','\\',0};
215 memcpy( buffer
, InterfaceW
, sizeof(InterfaceW
) );
216 StringFromGUID2( guid
, buffer
+ strlenW(buffer
), 40 );
220 /* get the lcid subkey for a typelib, in the form "<lcid>\\<syskind>" */
221 /* buffer must be at least 16 characters long */
222 static WCHAR
*get_lcid_subkey( LCID lcid
, SYSKIND syskind
, WCHAR
*buffer
)
224 static const WCHAR LcidFormatW
[] = {'%','l','x','\\',0};
225 static const WCHAR win16W
[] = {'w','i','n','1','6',0};
226 static const WCHAR win32W
[] = {'w','i','n','3','2',0};
228 sprintfW( buffer
, LcidFormatW
, lcid
);
231 case SYS_WIN16
: strcatW( buffer
, win16W
); break;
232 case SYS_WIN32
: strcatW( buffer
, win32W
); break;
234 TRACE("Typelib is for unsupported syskind %i\n", syskind
);
240 static HRESULT
TLB_ReadTypeLib(LPCWSTR pszFileName
, LPWSTR pszPath
, UINT cchPath
, ITypeLib2
**ppTypeLib
);
243 /****************************************************************************
244 * QueryPathOfRegTypeLib [OLEAUT32.164]
246 * Gets the path to a registered type library.
249 * guid [I] referenced guid
250 * wMaj [I] major version
251 * wMin [I] minor version
253 * path [O] path of typelib
257 * Failure: If the type library is not registered then TYPE_E_LIBNOTREGISTERED
258 * or TYPE_E_REGISTRYACCESS if the type library registration key couldn't be
261 HRESULT WINAPI
QueryPathOfRegTypeLib(
268 HRESULT hr
= TYPE_E_LIBNOTREGISTERED
;
272 WCHAR Path
[MAX_PATH
];
275 TRACE_(typelib
)("(%s, %x.%x, 0x%x, %p)\n", debugstr_guid(guid
), wMaj
, wMin
, lcid
, path
);
277 if (!find_typelib_key( guid
, wMaj
, &wMin
)) return TYPE_E_LIBNOTREGISTERED
;
278 get_typelib_key( guid
, wMaj
, wMin
, buffer
);
280 res
= RegOpenKeyExW( HKEY_CLASSES_ROOT
, buffer
, 0, KEY_READ
, &hkey
);
281 if (res
== ERROR_FILE_NOT_FOUND
)
283 TRACE_(typelib
)("%s not found\n", debugstr_w(buffer
));
284 return TYPE_E_LIBNOTREGISTERED
;
286 else if (res
!= ERROR_SUCCESS
)
288 TRACE_(typelib
)("failed to open %s for read access\n", debugstr_w(buffer
));
289 return TYPE_E_REGISTRYACCESS
;
294 LONG dwPathLen
= sizeof(Path
);
296 get_lcid_subkey( myLCID
, SYS_WIN32
, buffer
);
298 if (RegQueryValueW(hkey
, buffer
, Path
, &dwPathLen
))
302 else if (myLCID
== lcid
)
304 /* try with sub-langid */
305 myLCID
= SUBLANGID(lcid
);
307 else if ((myLCID
== SUBLANGID(lcid
)) && myLCID
)
309 /* try with system langid */
319 *path
= SysAllocString( Path
);
324 TRACE_(typelib
)("-- 0x%08x\n", hr
);
328 /******************************************************************************
329 * CreateTypeLib [OLEAUT32.160] creates a typelib
335 HRESULT WINAPI
CreateTypeLib(
336 SYSKIND syskind
, LPCOLESTR szFile
, ICreateTypeLib
** ppctlib
338 FIXME("(%d,%s,%p), stub!\n",syskind
,debugstr_w(szFile
),ppctlib
);
342 /******************************************************************************
343 * LoadTypeLib [OLEAUT32.161]
345 * Loads a type library
348 * szFile [I] Name of file to load from.
349 * pptLib [O] Pointer that receives ITypeLib object on success.
356 * LoadTypeLibEx, LoadRegTypeLib, CreateTypeLib.
358 HRESULT WINAPI
LoadTypeLib(const OLECHAR
*szFile
, ITypeLib
* *pptLib
)
360 TRACE("(%s,%p)\n",debugstr_w(szFile
), pptLib
);
361 return LoadTypeLibEx(szFile
, REGKIND_DEFAULT
, pptLib
);
364 /******************************************************************************
365 * LoadTypeLibEx [OLEAUT32.183]
367 * Loads and optionally registers a type library
373 HRESULT WINAPI
LoadTypeLibEx(
374 LPCOLESTR szFile
, /* [in] Name of file to load from */
375 REGKIND regkind
, /* [in] Specify kind of registration */
376 ITypeLib
**pptLib
) /* [out] Pointer to pointer to loaded type library */
378 WCHAR szPath
[MAX_PATH
+1];
381 TRACE("(%s,%d,%p)\n",debugstr_w(szFile
), regkind
, pptLib
);
385 res
= TLB_ReadTypeLib(szFile
, szPath
, MAX_PATH
+ 1, (ITypeLib2
**)pptLib
);
390 case REGKIND_DEFAULT
:
391 /* don't register typelibs supplied with full path. Experimentation confirms the following */
392 if (((szFile
[0] == '\\') && (szFile
[1] == '\\')) ||
393 (szFile
[0] && (szFile
[1] == ':'))) break;
394 /* else fall-through */
396 case REGKIND_REGISTER
:
397 if (!SUCCEEDED(res
= RegisterTypeLib(*pptLib
, (LPOLESTR
)szPath
, NULL
)))
399 IUnknown_Release(*pptLib
);
407 TRACE(" returns %08x\n",res
);
411 /******************************************************************************
412 * LoadRegTypeLib [OLEAUT32.162]
414 * Loads a registered type library.
417 * rguid [I] GUID of the registered type library.
418 * wVerMajor [I] major version.
419 * wVerMinor [I] minor version.
420 * lcid [I] locale ID.
421 * ppTLib [O] pointer that receives an ITypeLib object on success.
425 * Failure: Any HRESULT code returned from QueryPathOfRegTypeLib or
428 HRESULT WINAPI
LoadRegTypeLib(
440 res
= QueryPathOfRegTypeLib( rguid
, wVerMajor
, wVerMinor
, lcid
, &bstr
);
444 res
= LoadTypeLib(bstr
, ppTLib
);
448 TRACE("(IID: %s) load %s (%p)\n",debugstr_guid(rguid
), SUCCEEDED(res
)? "SUCCESS":"FAILED", *ppTLib
);
454 /* some string constants shared between RegisterTypeLib and UnRegisterTypeLib */
455 static const WCHAR TypeLibW
[] = {'T','y','p','e','L','i','b',0};
456 static const WCHAR FLAGSW
[] = {'F','L','A','G','S',0};
457 static const WCHAR HELPDIRW
[] = {'H','E','L','P','D','I','R',0};
458 static const WCHAR ProxyStubClsidW
[] = {'P','r','o','x','y','S','t','u','b','C','l','s','i','d',0};
459 static const WCHAR ProxyStubClsid32W
[] = {'P','r','o','x','y','S','t','u','b','C','l','s','i','d','3','2',0};
461 /******************************************************************************
462 * RegisterTypeLib [OLEAUT32.163]
463 * Adds information about a type library to the System Registry
465 * Docs: ITypeLib FAR * ptlib
466 * Docs: OLECHAR FAR* szFullPath
467 * Docs: OLECHAR FAR* szHelpDir
473 HRESULT WINAPI
RegisterTypeLib(
474 ITypeLib
* ptlib
, /* [in] Pointer to the library*/
475 OLECHAR
* szFullPath
, /* [in] full Path of the library*/
476 OLECHAR
* szHelpDir
) /* [in] dir to the helpfile for the library,
479 static const WCHAR PSOA
[] = {'{','0','0','0','2','0','4','2','4','-',
480 '0','0','0','0','-','0','0','0','0','-','C','0','0','0','-',
481 '0','0','0','0','0','0','0','0','0','0','4','6','}',0};
491 if (ptlib
== NULL
|| szFullPath
== NULL
)
494 if (!SUCCEEDED(ITypeLib_GetLibAttr(ptlib
, &attr
)))
497 get_typelib_key( &attr
->guid
, attr
->wMajorVerNum
, attr
->wMinorVerNum
, keyName
);
500 if (RegCreateKeyExW(HKEY_CLASSES_ROOT
, keyName
, 0, NULL
, 0,
501 KEY_WRITE
, NULL
, &key
, NULL
) == ERROR_SUCCESS
)
505 /* Set the human-readable name of the typelib */
506 if (SUCCEEDED(ITypeLib_GetDocumentation(ptlib
, -1, NULL
, &doc
, NULL
, NULL
)))
508 if (RegSetValueExW(key
, NULL
, 0, REG_SZ
,
509 (BYTE
*)doc
, (lstrlenW(doc
)+1) * sizeof(OLECHAR
)) != ERROR_SUCCESS
)
517 /* Make up the name of the typelib path subkey */
518 if (!get_lcid_subkey( attr
->lcid
, attr
->syskind
, tmp
)) res
= E_FAIL
;
520 /* Create the typelib path subkey */
521 if (res
== S_OK
&& RegCreateKeyExW(key
, tmp
, 0, NULL
, 0,
522 KEY_WRITE
, NULL
, &subKey
, NULL
) == ERROR_SUCCESS
)
524 if (RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
525 (BYTE
*)szFullPath
, (lstrlenW(szFullPath
)+1) * sizeof(OLECHAR
)) != ERROR_SUCCESS
)
533 /* Create the flags subkey */
534 if (res
== S_OK
&& RegCreateKeyExW(key
, FLAGSW
, 0, NULL
, 0,
535 KEY_WRITE
, NULL
, &subKey
, NULL
) == ERROR_SUCCESS
)
537 /* FIXME: is %u correct? */
538 static const WCHAR formatW
[] = {'%','u',0};
540 sprintfW(buf
, formatW
, attr
->wLibFlags
);
541 if (RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
542 (BYTE
*)buf
, (strlenW(buf
) + 1)*sizeof(WCHAR
) ) != ERROR_SUCCESS
)
550 /* create the helpdir subkey */
551 if (res
== S_OK
&& RegCreateKeyExW(key
, HELPDIRW
, 0, NULL
, 0,
552 KEY_WRITE
, NULL
, &subKey
, &disposition
) == ERROR_SUCCESS
)
554 BOOL freeHelpDir
= FALSE
;
557 /* if we created a new key, and helpDir was null, set the helpdir
558 to the directory which contains the typelib. However,
559 if we just opened an existing key, we leave the helpdir alone */
560 if ((disposition
== REG_CREATED_NEW_KEY
) && (szHelpDir
== NULL
)) {
561 szHelpDir
= SysAllocString(szFullPath
);
562 pIndexStr
= strrchrW(szHelpDir
, '\\');
569 /* if we have an szHelpDir, set it! */
570 if (szHelpDir
!= NULL
) {
571 if (RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
572 (BYTE
*)szHelpDir
, (lstrlenW(szHelpDir
)+1) * sizeof(OLECHAR
)) != ERROR_SUCCESS
) {
578 if (freeHelpDir
) SysFreeString(szHelpDir
);
590 /* register OLE Automation-compatible interfaces for this typelib */
591 types
= ITypeLib_GetTypeInfoCount(ptlib
);
592 for (tidx
=0; tidx
<types
; tidx
++) {
593 if (SUCCEEDED(ITypeLib_GetTypeInfoType(ptlib
, tidx
, &kind
))) {
594 LPOLESTR name
= NULL
;
595 ITypeInfo
*tinfo
= NULL
;
597 ITypeLib_GetDocumentation(ptlib
, tidx
, &name
, NULL
, NULL
, NULL
);
600 case TKIND_INTERFACE
:
601 TRACE_(typelib
)("%d: interface %s\n", tidx
, debugstr_w(name
));
602 ITypeLib_GetTypeInfo(ptlib
, tidx
, &tinfo
);
606 TRACE_(typelib
)("%d: dispinterface %s\n", tidx
, debugstr_w(name
));
607 ITypeLib_GetTypeInfo(ptlib
, tidx
, &tinfo
);
611 TRACE_(typelib
)("%d: %s\n", tidx
, debugstr_w(name
));
616 TYPEATTR
*tattr
= NULL
;
617 ITypeInfo_GetTypeAttr(tinfo
, &tattr
);
620 TRACE_(typelib
)("guid=%s, flags=%04x (",
621 debugstr_guid(&tattr
->guid
),
624 if (TRACE_ON(typelib
)) {
625 #define XX(x) if (TYPEFLAG_##x & tattr->wTypeFlags) MESSAGE(#x"|");
645 if (tattr
->wTypeFlags
& (TYPEFLAG_FOLEAUTOMATION
|TYPEFLAG_FDUAL
|TYPEFLAG_FDISPATCHABLE
))
647 /* register interface<->typelib coupling */
648 get_interface_key( &tattr
->guid
, keyName
);
649 if (RegCreateKeyExW(HKEY_CLASSES_ROOT
, keyName
, 0, NULL
, 0,
650 KEY_WRITE
, NULL
, &key
, NULL
) == ERROR_SUCCESS
)
653 RegSetValueExW(key
, NULL
, 0, REG_SZ
,
654 (BYTE
*)name
, (strlenW(name
)+1) * sizeof(OLECHAR
));
656 if (RegCreateKeyExW(key
, ProxyStubClsidW
, 0, NULL
, 0,
657 KEY_WRITE
, NULL
, &subKey
, NULL
) == ERROR_SUCCESS
) {
658 RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
659 (const BYTE
*)PSOA
, sizeof PSOA
);
663 if (RegCreateKeyExW(key
, ProxyStubClsid32W
, 0, NULL
, 0,
664 KEY_WRITE
, NULL
, &subKey
, NULL
) == ERROR_SUCCESS
) {
665 RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
666 (const BYTE
*)PSOA
, sizeof PSOA
);
670 if (RegCreateKeyExW(key
, TypeLibW
, 0, NULL
, 0,
671 KEY_WRITE
, NULL
, &subKey
, NULL
) == ERROR_SUCCESS
)
674 static const WCHAR fmtver
[] = {'%','x','.','%','x',0 };
675 static const WCHAR VersionW
[] = {'V','e','r','s','i','o','n',0};
677 StringFromGUID2(&attr
->guid
, buffer
, 40);
678 RegSetValueExW(subKey
, NULL
, 0, REG_SZ
,
679 (BYTE
*)buffer
, (strlenW(buffer
)+1) * sizeof(WCHAR
));
680 sprintfW(buffer
, fmtver
, attr
->wMajorVerNum
, attr
->wMinorVerNum
);
681 RegSetValueExW(subKey
, VersionW
, 0, REG_SZ
,
682 (BYTE
*)buffer
, (strlenW(buffer
)+1) * sizeof(WCHAR
));
690 ITypeInfo_ReleaseTypeAttr(tinfo
, tattr
);
693 ITypeInfo_Release(tinfo
);
700 ITypeLib_ReleaseTLibAttr(ptlib
, attr
);
706 /******************************************************************************
707 * UnRegisterTypeLib [OLEAUT32.186]
708 * Removes information about a type library from the System Registry
715 HRESULT WINAPI
UnRegisterTypeLib(
716 REFGUID libid
, /* [in] Guid of the library */
717 WORD wVerMajor
, /* [in] major version */
718 WORD wVerMinor
, /* [in] minor version */
719 LCID lcid
, /* [in] locale id */
722 BSTR tlibPath
= NULL
;
725 WCHAR subKeyName
[50];
728 BOOL deleteOtherStuff
;
731 TYPEATTR
* typeAttr
= NULL
;
733 ITypeInfo
* typeInfo
= NULL
;
734 ITypeLib
* typeLib
= NULL
;
737 TRACE("(IID: %s)\n",debugstr_guid(libid
));
739 /* Create the path to the key */
740 get_typelib_key( libid
, wVerMajor
, wVerMinor
, keyName
);
742 if (syskind
!= SYS_WIN16
&& syskind
!= SYS_WIN32
)
744 TRACE("Unsupported syskind %i\n", syskind
);
745 result
= E_INVALIDARG
;
749 /* get the path to the typelib on disk */
750 if (QueryPathOfRegTypeLib(libid
, wVerMajor
, wVerMinor
, lcid
, &tlibPath
) != S_OK
) {
751 result
= E_INVALIDARG
;
755 /* Try and open the key to the type library. */
756 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, keyName
, 0, KEY_READ
| KEY_WRITE
, &key
) != ERROR_SUCCESS
) {
757 result
= E_INVALIDARG
;
761 /* Try and load the type library */
762 if (LoadTypeLibEx(tlibPath
, REGKIND_NONE
, &typeLib
)) {
763 result
= TYPE_E_INVALIDSTATE
;
767 /* remove any types registered with this typelib */
768 numTypes
= ITypeLib_GetTypeInfoCount(typeLib
);
769 for (i
=0; i
<numTypes
; i
++) {
770 /* get the kind of type */
771 if (ITypeLib_GetTypeInfoType(typeLib
, i
, &kind
) != S_OK
) {
775 /* skip non-interfaces, and get type info for the type */
776 if ((kind
!= TKIND_INTERFACE
) && (kind
!= TKIND_DISPATCH
)) {
779 if (ITypeLib_GetTypeInfo(typeLib
, i
, &typeInfo
) != S_OK
) {
782 if (ITypeInfo_GetTypeAttr(typeInfo
, &typeAttr
) != S_OK
) {
786 /* the path to the type */
787 get_interface_key( &typeAttr
->guid
, subKeyName
);
789 /* Delete its bits */
790 if (RegOpenKeyExW(HKEY_CLASSES_ROOT
, subKeyName
, 0, KEY_WRITE
, &subKey
) != ERROR_SUCCESS
) {
793 RegDeleteKeyW(subKey
, ProxyStubClsidW
);
794 RegDeleteKeyW(subKey
, ProxyStubClsid32W
);
795 RegDeleteKeyW(subKey
, TypeLibW
);
798 RegDeleteKeyW(HKEY_CLASSES_ROOT
, subKeyName
);
801 if (typeAttr
) ITypeInfo_ReleaseTypeAttr(typeInfo
, typeAttr
);
803 if (typeInfo
) ITypeInfo_Release(typeInfo
);
807 /* Now, delete the type library path subkey */
808 get_lcid_subkey( lcid
, syskind
, subKeyName
);
809 RegDeleteKeyW(key
, subKeyName
);
810 *strrchrW( subKeyName
, '\\' ) = 0; /* remove last path component */
811 RegDeleteKeyW(key
, subKeyName
);
813 /* check if there is anything besides the FLAGS/HELPDIR keys.
814 If there is, we don't delete them */
815 tmpLength
= sizeof(subKeyName
)/sizeof(WCHAR
);
816 deleteOtherStuff
= TRUE
;
818 while(RegEnumKeyExW(key
, i
++, subKeyName
, &tmpLength
, NULL
, NULL
, NULL
, NULL
) == ERROR_SUCCESS
) {
819 tmpLength
= sizeof(subKeyName
)/sizeof(WCHAR
);
821 /* if its not FLAGS or HELPDIR, then we must keep the rest of the key */
822 if (!strcmpW(subKeyName
, FLAGSW
)) continue;
823 if (!strcmpW(subKeyName
, HELPDIRW
)) continue;
824 deleteOtherStuff
= FALSE
;
828 /* only delete the other parts of the key if we're absolutely sure */
829 if (deleteOtherStuff
) {
830 RegDeleteKeyW(key
, FLAGSW
);
831 RegDeleteKeyW(key
, HELPDIRW
);
835 RegDeleteKeyW(HKEY_CLASSES_ROOT
, keyName
);
836 *strrchrW( keyName
, '\\' ) = 0; /* remove last path component */
837 RegDeleteKeyW(HKEY_CLASSES_ROOT
, keyName
);
841 if (tlibPath
) SysFreeString(tlibPath
);
842 if (typeLib
) ITypeLib_Release(typeLib
);
843 if (subKey
) RegCloseKey(subKey
);
844 if (key
) RegCloseKey(key
);
848 /*======================= ITypeLib implementation =======================*/
850 typedef struct tagTLBCustData
854 struct tagTLBCustData
* next
;
857 /* data structure for import typelibs */
858 typedef struct tagTLBImpLib
860 int offset
; /* offset in the file (MSFT)
861 offset in nametable (SLTG)
862 just used to identify library while reading
864 GUID guid
; /* libid */
865 BSTR name
; /* name */
867 LCID lcid
; /* lcid of imported typelib */
869 WORD wVersionMajor
; /* major version number */
870 WORD wVersionMinor
; /* minor version number */
872 struct tagITypeLibImpl
*pImpTypeLib
; /* pointer to loaded typelib, or
873 NULL if not yet loaded */
874 struct tagTLBImpLib
* next
;
877 /* internal ITypeLib data */
878 typedef struct tagITypeLibImpl
880 const ITypeLib2Vtbl
*lpVtbl
;
881 const ITypeCompVtbl
*lpVtblTypeComp
;
883 TLIBATTR LibAttr
; /* guid,lcid,syskind,version,flags */
885 /* strings can be stored in tlb as multibyte strings BUT they are *always*
886 * exported to the application as a UNICODE string.
892 unsigned long dwHelpContext
;
893 int TypeInfoCount
; /* nr of typeinfo's in librarry */
894 struct tagITypeInfoImpl
*pTypeInfo
; /* linked list of type info data */
895 int ctCustData
; /* number of items in cust data list */
896 TLBCustData
* pCustData
; /* linked list to cust data */
897 TLBImpLib
* pImpLibs
; /* linked list to all imported typelibs */
898 int ctTypeDesc
; /* number of items in type desc array */
899 TYPEDESC
* pTypeDesc
; /* array of TypeDescriptions found in the
900 library. Only used while reading MSFT
902 struct list ref_list
; /* list of ref types in this typelib */
903 HREFTYPE dispatch_href
; /* reference to IDispatch, -1 if unused */
906 /* typelibs are cached, keyed by path and index, so store the linked list info within them */
907 struct tagITypeLibImpl
*next
, *prev
;
912 static const ITypeLib2Vtbl tlbvt
;
913 static const ITypeCompVtbl tlbtcvt
;
915 static inline ITypeLibImpl
*impl_from_ITypeComp( ITypeComp
*iface
)
917 return (ITypeLibImpl
*)((char*)iface
- FIELD_OFFSET(ITypeLibImpl
, lpVtblTypeComp
));
920 /* ITypeLib methods */
921 static ITypeLib2
* ITypeLib2_Constructor_MSFT(LPVOID pLib
, DWORD dwTLBLength
);
922 static ITypeLib2
* ITypeLib2_Constructor_SLTG(LPVOID pLib
, DWORD dwTLBLength
);
924 /*======================= ITypeInfo implementation =======================*/
926 /* data for referenced types */
927 typedef struct tagTLBRefType
929 INT index
; /* Type index for internal ref or for external ref
930 it the format is SLTG. -2 indicates to
933 GUID guid
; /* guid of the referenced type */
934 /* if index == TLB_REF_USE_GUID */
936 HREFTYPE reference
; /* The href of this ref */
937 TLBImpLib
*pImpTLInfo
; /* If ref is external ptr to library data
938 TLB_REF_INTERNAL for internal refs
939 TLB_REF_NOT_FOUND for broken refs */
944 #define TLB_REF_USE_GUID -2
946 #define TLB_REF_INTERNAL (void*)-2
947 #define TLB_REF_NOT_FOUND (void*)-1
949 /* internal Parameter data */
950 typedef struct tagTLBParDesc
954 TLBCustData
* pCustData
; /* linked list to cust data */
957 /* internal Function data */
958 typedef struct tagTLBFuncDesc
960 FUNCDESC funcdesc
; /* lots of info on the function and its attributes. */
961 BSTR Name
; /* the name of this function */
962 TLBParDesc
*pParamDesc
; /* array with param names and custom data */
964 int HelpStringContext
;
966 BSTR Entry
; /* if its Hiword==0, it numeric; -1 is not present*/
968 TLBCustData
* pCustData
; /* linked list to cust data; */
969 struct tagTLBFuncDesc
* next
;
972 /* internal Variable data */
973 typedef struct tagTLBVarDesc
975 VARDESC vardesc
; /* lots of info on the variable and its attributes. */
976 BSTR Name
; /* the name of this variable */
978 int HelpStringContext
; /* FIXME: where? */
981 TLBCustData
* pCustData
;/* linked list to cust data; */
982 struct tagTLBVarDesc
* next
;
985 /* internal implemented interface data */
986 typedef struct tagTLBImplType
988 HREFTYPE hRef
; /* hRef of interface */
989 int implflags
; /* IMPLFLAG_*s */
991 TLBCustData
* pCustData
;/* linked list to custom data; */
992 struct tagTLBImplType
*next
;
995 /* internal TypeInfo data */
996 typedef struct tagITypeInfoImpl
998 const ITypeInfo2Vtbl
*lpVtbl
;
999 const ITypeCompVtbl
*lpVtblTypeComp
;
1001 BOOL no_free_data
; /* don't free data structures */
1002 TYPEATTR TypeAttr
; /* _lots_ of type information. */
1003 ITypeLibImpl
* pTypeLib
; /* back pointer to typelib */
1004 int index
; /* index in this typelib; */
1005 HREFTYPE hreftype
; /* hreftype for app object binding */
1006 /* type libs seem to store the doc strings in ascii
1007 * so why should we do it in unicode?
1012 unsigned long dwHelpContext
;
1013 unsigned long dwHelpStringContext
;
1016 TLBFuncDesc
* funclist
; /* linked list with function descriptions */
1019 TLBVarDesc
* varlist
; /* linked list with variable descriptions */
1021 /* Implemented Interfaces */
1022 TLBImplType
* impltypelist
;
1025 TLBCustData
* pCustData
; /* linked list to cust data; */
1026 struct tagITypeInfoImpl
* next
;
1029 static inline ITypeInfoImpl
*info_impl_from_ITypeComp( ITypeComp
*iface
)
1031 return (ITypeInfoImpl
*)((char*)iface
- FIELD_OFFSET(ITypeInfoImpl
, lpVtblTypeComp
));
1034 static const ITypeInfo2Vtbl tinfvt
;
1035 static const ITypeCompVtbl tcompvt
;
1037 static ITypeInfo2
* WINAPI
ITypeInfo_Constructor(void);
1039 typedef struct tagTLBContext
1041 unsigned int oStart
; /* start of TLB in file */
1042 unsigned int pos
; /* current pos */
1043 unsigned int length
; /* total length */
1044 void *mapping
; /* memory mapping */
1045 MSFT_SegDir
* pTblDir
;
1046 ITypeLibImpl
* pLibInfo
;
1050 static void MSFT_DoRefType(TLBContext
*pcx
, ITypeLibImpl
*pTL
, int offset
);
1055 static void dump_TypeDesc(const TYPEDESC
*pTD
,char *szVarType
) {
1056 if (pTD
->vt
& VT_RESERVED
)
1057 szVarType
+= strlen(strcpy(szVarType
, "reserved | "));
1058 if (pTD
->vt
& VT_BYREF
)
1059 szVarType
+= strlen(strcpy(szVarType
, "ref to "));
1060 if (pTD
->vt
& VT_ARRAY
)
1061 szVarType
+= strlen(strcpy(szVarType
, "array of "));
1062 if (pTD
->vt
& VT_VECTOR
)
1063 szVarType
+= strlen(strcpy(szVarType
, "vector of "));
1064 switch(pTD
->vt
& VT_TYPEMASK
) {
1065 case VT_UI1
: sprintf(szVarType
, "VT_UI1"); break;
1066 case VT_I2
: sprintf(szVarType
, "VT_I2"); break;
1067 case VT_I4
: sprintf(szVarType
, "VT_I4"); break;
1068 case VT_R4
: sprintf(szVarType
, "VT_R4"); break;
1069 case VT_R8
: sprintf(szVarType
, "VT_R8"); break;
1070 case VT_BOOL
: sprintf(szVarType
, "VT_BOOL"); break;
1071 case VT_ERROR
: sprintf(szVarType
, "VT_ERROR"); break;
1072 case VT_CY
: sprintf(szVarType
, "VT_CY"); break;
1073 case VT_DATE
: sprintf(szVarType
, "VT_DATE"); break;
1074 case VT_BSTR
: sprintf(szVarType
, "VT_BSTR"); break;
1075 case VT_UNKNOWN
: sprintf(szVarType
, "VT_UNKNOWN"); break;
1076 case VT_DISPATCH
: sprintf(szVarType
, "VT_DISPATCH"); break;
1077 case VT_I1
: sprintf(szVarType
, "VT_I1"); break;
1078 case VT_UI2
: sprintf(szVarType
, "VT_UI2"); break;
1079 case VT_UI4
: sprintf(szVarType
, "VT_UI4"); break;
1080 case VT_INT
: sprintf(szVarType
, "VT_INT"); break;
1081 case VT_UINT
: sprintf(szVarType
, "VT_UINT"); break;
1082 case VT_VARIANT
: sprintf(szVarType
, "VT_VARIANT"); break;
1083 case VT_VOID
: sprintf(szVarType
, "VT_VOID"); break;
1084 case VT_HRESULT
: sprintf(szVarType
, "VT_HRESULT"); break;
1085 case VT_USERDEFINED
: sprintf(szVarType
, "VT_USERDEFINED ref = %x",
1086 pTD
->u
.hreftype
); break;
1087 case VT_LPSTR
: sprintf(szVarType
, "VT_LPSTR"); break;
1088 case VT_LPWSTR
: sprintf(szVarType
, "VT_LPWSTR"); break;
1089 case VT_PTR
: sprintf(szVarType
, "ptr to ");
1090 dump_TypeDesc(pTD
->u
.lptdesc
, szVarType
+ 7);
1092 case VT_SAFEARRAY
: sprintf(szVarType
, "safearray of ");
1093 dump_TypeDesc(pTD
->u
.lptdesc
, szVarType
+ 13);
1095 case VT_CARRAY
: sprintf(szVarType
, "%d dim array of ",
1096 pTD
->u
.lpadesc
->cDims
); /* FIXME print out sizes */
1097 dump_TypeDesc(&pTD
->u
.lpadesc
->tdescElem
, szVarType
+ strlen(szVarType
));
1100 default: sprintf(szVarType
, "unknown(%d)", pTD
->vt
& VT_TYPEMASK
); break;
1104 static void dump_ELEMDESC(const ELEMDESC
*edesc
) {
1106 USHORT flags
= edesc
->u
.paramdesc
.wParamFlags
;
1107 dump_TypeDesc(&edesc
->tdesc
,buf
);
1108 MESSAGE("\t\ttdesc.vartype %d (%s)\n",edesc
->tdesc
.vt
,buf
);
1109 MESSAGE("\t\tu.paramdesc.wParamFlags");
1110 if (!flags
) MESSAGE(" PARAMFLAGS_NONE");
1111 if (flags
& PARAMFLAG_FIN
) MESSAGE(" PARAMFLAG_FIN");
1112 if (flags
& PARAMFLAG_FOUT
) MESSAGE(" PARAMFLAG_FOUT");
1113 if (flags
& PARAMFLAG_FLCID
) MESSAGE(" PARAMFLAG_FLCID");
1114 if (flags
& PARAMFLAG_FRETVAL
) MESSAGE(" PARAMFLAG_FRETVAL");
1115 if (flags
& PARAMFLAG_FOPT
) MESSAGE(" PARAMFLAG_FOPT");
1116 if (flags
& PARAMFLAG_FHASDEFAULT
) MESSAGE(" PARAMFLAG_FHASDEFAULT");
1117 if (flags
& PARAMFLAG_FHASCUSTDATA
) MESSAGE(" PARAMFLAG_FHASCUSTDATA");
1118 MESSAGE("\n\t\tu.paramdesc.lpex %p\n",edesc
->u
.paramdesc
.pparamdescex
);
1120 static void dump_FUNCDESC(const FUNCDESC
*funcdesc
) {
1122 MESSAGE("memid is %08x\n",funcdesc
->memid
);
1123 for (i
=0;i
<funcdesc
->cParams
;i
++) {
1124 MESSAGE("Param %d:\n",i
);
1125 dump_ELEMDESC(funcdesc
->lprgelemdescParam
+i
);
1127 MESSAGE("\tfunckind: %d (",funcdesc
->funckind
);
1128 switch (funcdesc
->funckind
) {
1129 case FUNC_VIRTUAL
: MESSAGE("virtual");break;
1130 case FUNC_PUREVIRTUAL
: MESSAGE("pure virtual");break;
1131 case FUNC_NONVIRTUAL
: MESSAGE("nonvirtual");break;
1132 case FUNC_STATIC
: MESSAGE("static");break;
1133 case FUNC_DISPATCH
: MESSAGE("dispatch");break;
1134 default: MESSAGE("unknown");break;
1136 MESSAGE(")\n\tinvkind: %d (",funcdesc
->invkind
);
1137 switch (funcdesc
->invkind
) {
1138 case INVOKE_FUNC
: MESSAGE("func");break;
1139 case INVOKE_PROPERTYGET
: MESSAGE("property get");break;
1140 case INVOKE_PROPERTYPUT
: MESSAGE("property put");break;
1141 case INVOKE_PROPERTYPUTREF
: MESSAGE("property put ref");break;
1143 MESSAGE(")\n\tcallconv: %d (",funcdesc
->callconv
);
1144 switch (funcdesc
->callconv
) {
1145 case CC_CDECL
: MESSAGE("cdecl");break;
1146 case CC_PASCAL
: MESSAGE("pascal");break;
1147 case CC_STDCALL
: MESSAGE("stdcall");break;
1148 case CC_SYSCALL
: MESSAGE("syscall");break;
1151 MESSAGE(")\n\toVft: %d\n", funcdesc
->oVft
);
1152 MESSAGE("\tcParamsOpt: %d\n", funcdesc
->cParamsOpt
);
1153 MESSAGE("\twFlags: %x\n", funcdesc
->wFuncFlags
);
1155 MESSAGE("\telemdescFunc (return value type):\n");
1156 dump_ELEMDESC(&funcdesc
->elemdescFunc
);
1159 static const char * const typekind_desc
[] =
1172 static void dump_TLBFuncDescOne(const TLBFuncDesc
* pfd
)
1175 MESSAGE("%s(%u)\n", debugstr_w(pfd
->Name
), pfd
->funcdesc
.cParams
);
1176 for (i
=0;i
<pfd
->funcdesc
.cParams
;i
++)
1177 MESSAGE("\tparm%d: %s\n",i
,debugstr_w(pfd
->pParamDesc
[i
].Name
));
1180 dump_FUNCDESC(&(pfd
->funcdesc
));
1182 MESSAGE("\thelpstring: %s\n", debugstr_w(pfd
->HelpString
));
1183 MESSAGE("\tentry: %s\n", (pfd
->Entry
== (void *)-1) ? "invalid" : debugstr_w(pfd
->Entry
));
1185 static void dump_TLBFuncDesc(const TLBFuncDesc
* pfd
)
1189 dump_TLBFuncDescOne(pfd
);
1193 static void dump_TLBVarDesc(const TLBVarDesc
* pvd
)
1197 TRACE_(typelib
)("%s\n", debugstr_w(pvd
->Name
));
1202 static void dump_TLBImpLib(const TLBImpLib
*import
)
1204 TRACE_(typelib
)("%s %s\n", debugstr_guid(&(import
->guid
)),
1205 debugstr_w(import
->name
));
1206 TRACE_(typelib
)("v%d.%d lcid=%x offset=%x\n", import
->wVersionMajor
,
1207 import
->wVersionMinor
, import
->lcid
, import
->offset
);
1210 static void dump_TLBRefType(const ITypeLibImpl
*pTL
)
1214 LIST_FOR_EACH_ENTRY(ref
, &pTL
->ref_list
, TLBRefType
, entry
)
1216 TRACE_(typelib
)("href:0x%08x\n", ref
->reference
);
1217 if(ref
->index
== -1)
1218 TRACE_(typelib
)("%s\n", debugstr_guid(&(ref
->guid
)));
1220 TRACE_(typelib
)("type no: %d\n", ref
->index
);
1222 if(ref
->pImpTLInfo
!= TLB_REF_INTERNAL
&& ref
->pImpTLInfo
!= TLB_REF_NOT_FOUND
)
1224 TRACE_(typelib
)("in lib\n");
1225 dump_TLBImpLib(ref
->pImpTLInfo
);
1230 static void dump_TLBImplType(const TLBImplType
* impl
)
1234 "implementing/inheriting interface hRef = %x implflags %x\n",
1235 impl
->hRef
, impl
->implflags
);
1240 static void dump_Variant(const VARIANT
* pvar
)
1244 TRACE("%p->{%s%s", pvar
, debugstr_VT(pvar
), debugstr_VF(pvar
));
1248 if (V_ISBYREF(pvar
) || V_TYPE(pvar
) == VT_UNKNOWN
||
1249 V_TYPE(pvar
) == VT_DISPATCH
|| V_TYPE(pvar
) == VT_RECORD
)
1251 TRACE(",%p", V_BYREF(pvar
));
1253 else if (V_ISARRAY(pvar
) || V_ISVECTOR(pvar
))
1255 TRACE(",%p", V_ARRAY(pvar
));
1257 else switch (V_TYPE(pvar
))
1259 case VT_I1
: TRACE(",%d", V_I1(pvar
)); break;
1260 case VT_UI1
: TRACE(",%d", V_UI1(pvar
)); break;
1261 case VT_I2
: TRACE(",%d", V_I2(pvar
)); break;
1262 case VT_UI2
: TRACE(",%d", V_UI2(pvar
)); break;
1264 case VT_I4
: TRACE(",%d", V_I4(pvar
)); break;
1266 case VT_UI4
: TRACE(",%d", V_UI4(pvar
)); break;
1267 case VT_I8
: TRACE(",0x%08x,0x%08x", (ULONG
)(V_I8(pvar
) >> 32),
1268 (ULONG
)(V_I8(pvar
) & 0xffffffff)); break;
1269 case VT_UI8
: TRACE(",0x%08x,0x%08x", (ULONG
)(V_UI8(pvar
) >> 32),
1270 (ULONG
)(V_UI8(pvar
) & 0xffffffff)); break;
1271 case VT_R4
: TRACE(",%3.3e", V_R4(pvar
)); break;
1272 case VT_R8
: TRACE(",%3.3e", V_R8(pvar
)); break;
1273 case VT_BOOL
: TRACE(",%s", V_BOOL(pvar
) ? "TRUE" : "FALSE"); break;
1274 case VT_BSTR
: TRACE(",%s", debugstr_w(V_BSTR(pvar
))); break;
1275 case VT_CY
: TRACE(",0x%08x,0x%08x", V_CY(pvar
).s
.Hi
,
1276 V_CY(pvar
).s
.Lo
); break;
1278 if(!VariantTimeToSystemTime(V_DATE(pvar
), &st
))
1279 TRACE(",<invalid>");
1281 TRACE(",%04d/%02d/%02d %02d:%02d:%02d", st
.wYear
, st
.wMonth
, st
.wDay
,
1282 st
.wHour
, st
.wMinute
, st
.wSecond
);
1286 case VT_USERDEFINED
:
1288 case VT_NULL
: break;
1289 default: TRACE(",?"); break;
1295 static void dump_DispParms(const DISPPARAMS
* pdp
)
1299 TRACE("args=%u named args=%u\n", pdp
->cArgs
, pdp
->cNamedArgs
);
1301 if (pdp
->cNamedArgs
&& pdp
->rgdispidNamedArgs
)
1303 TRACE("named args:\n");
1304 for (index
= 0; index
< pdp
->cNamedArgs
; index
++)
1305 TRACE( "\t0x%x\n", pdp
->rgdispidNamedArgs
[index
] );
1308 if (pdp
->cArgs
&& pdp
->rgvarg
)
1311 for (index
= 0; index
< pdp
->cArgs
; index
++)
1312 dump_Variant( &pdp
->rgvarg
[index
] );
1316 static void dump_TypeInfo(const ITypeInfoImpl
* pty
)
1318 TRACE("%p ref=%u\n", pty
, pty
->ref
);
1319 TRACE("%s %s\n", debugstr_w(pty
->Name
), debugstr_w(pty
->DocString
));
1320 TRACE("attr:%s\n", debugstr_guid(&(pty
->TypeAttr
.guid
)));
1321 TRACE("kind:%s\n", typekind_desc
[pty
->TypeAttr
.typekind
]);
1322 TRACE("fct:%u var:%u impl:%u\n",
1323 pty
->TypeAttr
.cFuncs
, pty
->TypeAttr
.cVars
, pty
->TypeAttr
.cImplTypes
);
1324 TRACE("wTypeFlags: 0x%04x\n", pty
->TypeAttr
.wTypeFlags
);
1325 TRACE("parent tlb:%p index in TLB:%u\n",pty
->pTypeLib
, pty
->index
);
1326 if (pty
->TypeAttr
.typekind
== TKIND_MODULE
) TRACE("dllname:%s\n", debugstr_w(pty
->DllName
));
1328 dump_TLBFuncDesc(pty
->funclist
);
1329 dump_TLBVarDesc(pty
->varlist
);
1330 dump_TLBImplType(pty
->impltypelist
);
1333 static void dump_VARDESC(const VARDESC
*v
)
1335 MESSAGE("memid %d\n",v
->memid
);
1336 MESSAGE("lpstrSchema %s\n",debugstr_w(v
->lpstrSchema
));
1337 MESSAGE("oInst %d\n",v
->u
.oInst
);
1338 dump_ELEMDESC(&(v
->elemdescVar
));
1339 MESSAGE("wVarFlags %x\n",v
->wVarFlags
);
1340 MESSAGE("varkind %d\n",v
->varkind
);
1343 static TYPEDESC stndTypeDesc
[VT_LPWSTR
+1]=
1345 /* VT_LPWSTR is largest type that */
1346 /* may appear in type description*/
1347 {{0}, 0},{{0}, 1},{{0}, 2},{{0}, 3},{{0}, 4},
1348 {{0}, 5},{{0}, 6},{{0}, 7},{{0}, 8},{{0}, 9},
1349 {{0},10},{{0},11},{{0},12},{{0},13},{{0},14},
1350 {{0},15},{{0},16},{{0},17},{{0},18},{{0},19},
1351 {{0},20},{{0},21},{{0},22},{{0},23},{{0},24},
1352 {{0},25},{{0},26},{{0},27},{{0},28},{{0},29},
1356 static void TLB_abort(void)
1360 static void * TLB_Alloc(unsigned size
)
1363 if((ret
=HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,size
))==NULL
){
1365 ERR("cannot allocate memory\n");
1370 static void TLB_Free(void * ptr
)
1372 HeapFree(GetProcessHeap(), 0, ptr
);
1375 /* returns the size required for a deep copy of a typedesc into a
1377 static SIZE_T
TLB_SizeTypeDesc( const TYPEDESC
*tdesc
, BOOL alloc_initial_space
)
1381 if (alloc_initial_space
)
1382 size
+= sizeof(TYPEDESC
);
1388 size
+= TLB_SizeTypeDesc(tdesc
->u
.lptdesc
, TRUE
);
1391 size
+= FIELD_OFFSET(ARRAYDESC
, rgbounds
[tdesc
->u
.lpadesc
->cDims
]);
1392 size
+= TLB_SizeTypeDesc(&tdesc
->u
.lpadesc
->tdescElem
, FALSE
);
1398 /* deep copy a typedesc into a flat buffer */
1399 static void *TLB_CopyTypeDesc( TYPEDESC
*dest
, const TYPEDESC
*src
, void *buffer
)
1404 buffer
= (char *)buffer
+ sizeof(TYPEDESC
);
1413 dest
->u
.lptdesc
= buffer
;
1414 buffer
= TLB_CopyTypeDesc(NULL
, src
->u
.lptdesc
, buffer
);
1417 dest
->u
.lpadesc
= buffer
;
1418 memcpy(dest
->u
.lpadesc
, src
->u
.lpadesc
, FIELD_OFFSET(ARRAYDESC
, rgbounds
[src
->u
.lpadesc
->cDims
]));
1419 buffer
= (char *)buffer
+ FIELD_OFFSET(ARRAYDESC
, rgbounds
[src
->u
.lpadesc
->cDims
]);
1420 buffer
= TLB_CopyTypeDesc(&dest
->u
.lpadesc
->tdescElem
, &src
->u
.lpadesc
->tdescElem
, buffer
);
1426 /* free custom data allocated by MSFT_CustData */
1427 static inline void TLB_FreeCustData(TLBCustData
*pCustData
)
1429 TLBCustData
*pCustDataNext
;
1430 for (; pCustData
; pCustData
= pCustDataNext
)
1432 VariantClear(&pCustData
->data
);
1434 pCustDataNext
= pCustData
->next
;
1435 TLB_Free(pCustData
);
1439 /**********************************************************************
1441 * Functions for reading MSFT typelibs (those created by CreateTypeLib2)
1443 static inline unsigned int MSFT_Tell(const TLBContext
*pcx
)
1448 static inline void MSFT_Seek(TLBContext
*pcx
, long where
)
1450 if (where
!= DO_NOT_SEEK
)
1452 where
+= pcx
->oStart
;
1453 if (where
> pcx
->length
)
1456 ERR("seek beyond end (%ld/%d)\n", where
, pcx
->length
);
1464 static DWORD
MSFT_Read(void *buffer
, DWORD count
, TLBContext
*pcx
, long where
)
1466 TRACE_(typelib
)("pos=0x%08x len=0x%08x 0x%08x 0x%08x 0x%08lx\n",
1467 pcx
->pos
, count
, pcx
->oStart
, pcx
->length
, where
);
1469 MSFT_Seek(pcx
, where
);
1470 if (pcx
->pos
+ count
> pcx
->length
) count
= pcx
->length
- pcx
->pos
;
1471 memcpy( buffer
, (char *)pcx
->mapping
+ pcx
->pos
, count
);
1476 static DWORD
MSFT_ReadLEDWords(void *buffer
, DWORD count
, TLBContext
*pcx
,
1481 ret
= MSFT_Read(buffer
, count
, pcx
, where
);
1482 FromLEDWords(buffer
, ret
);
1487 static DWORD
MSFT_ReadLEWords(void *buffer
, DWORD count
, TLBContext
*pcx
,
1492 ret
= MSFT_Read(buffer
, count
, pcx
, where
);
1493 FromLEWords(buffer
, ret
);
1498 static void MSFT_ReadGuid( GUID
*pGuid
, int offset
, TLBContext
*pcx
)
1500 if(offset
<0 || pcx
->pTblDir
->pGuidTab
.offset
<0){
1501 memset(pGuid
,0, sizeof(GUID
));
1504 MSFT_Read(pGuid
, sizeof(GUID
), pcx
, pcx
->pTblDir
->pGuidTab
.offset
+offset
);
1505 pGuid
->Data1
= FromLEDWord(pGuid
->Data1
);
1506 pGuid
->Data2
= FromLEWord(pGuid
->Data2
);
1507 pGuid
->Data3
= FromLEWord(pGuid
->Data3
);
1508 TRACE_(typelib
)("%s\n", debugstr_guid(pGuid
));
1511 static HREFTYPE
MSFT_ReadHreftype( TLBContext
*pcx
, int offset
)
1513 MSFT_NameIntro niName
;
1517 ERR_(typelib
)("bad offset %d\n", offset
);
1521 MSFT_ReadLEDWords(&niName
, sizeof(niName
), pcx
,
1522 pcx
->pTblDir
->pNametab
.offset
+offset
);
1524 return niName
.hreftype
;
1527 static BSTR
MSFT_ReadName( TLBContext
*pcx
, int offset
)
1530 MSFT_NameIntro niName
;
1532 BSTR bstrName
= NULL
;
1536 ERR_(typelib
)("bad offset %d\n", offset
);
1539 MSFT_ReadLEDWords(&niName
, sizeof(niName
), pcx
,
1540 pcx
->pTblDir
->pNametab
.offset
+offset
);
1541 niName
.namelen
&= 0xFF; /* FIXME: correct ? */
1542 name
=TLB_Alloc((niName
.namelen
& 0xff) +1);
1543 MSFT_Read(name
, (niName
.namelen
& 0xff), pcx
, DO_NOT_SEEK
);
1544 name
[niName
.namelen
& 0xff]='\0';
1546 lengthInChars
= MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
| MB_ERR_INVALID_CHARS
,
1549 /* no invalid characters in string */
1552 bstrName
= SysAllocStringByteLen(NULL
, lengthInChars
* sizeof(WCHAR
));
1554 /* don't check for invalid character since this has been done previously */
1555 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, name
, -1, bstrName
, lengthInChars
);
1559 TRACE_(typelib
)("%s %d\n", debugstr_w(bstrName
), lengthInChars
);
1563 static BSTR
MSFT_ReadString( TLBContext
*pcx
, int offset
)
1570 if(offset
<0) return NULL
;
1571 MSFT_ReadLEWords(&length
, sizeof(INT16
), pcx
, pcx
->pTblDir
->pStringtab
.offset
+offset
);
1572 if(length
<= 0) return 0;
1573 string
=TLB_Alloc(length
+1);
1574 MSFT_Read(string
, length
, pcx
, DO_NOT_SEEK
);
1575 string
[length
]='\0';
1577 lengthInChars
= MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
| MB_ERR_INVALID_CHARS
,
1578 string
, -1, NULL
, 0);
1580 /* no invalid characters in string */
1583 bstr
= SysAllocStringByteLen(NULL
, lengthInChars
* sizeof(WCHAR
));
1585 /* don't check for invalid character since this has been done previously */
1586 MultiByteToWideChar(CP_ACP
, MB_PRECOMPOSED
, string
, -1, bstr
, lengthInChars
);
1590 TRACE_(typelib
)("%s %d\n", debugstr_w(bstr
), lengthInChars
);
1594 * read a value and fill a VARIANT structure
1596 static void MSFT_ReadValue( VARIANT
* pVar
, int offset
, TLBContext
*pcx
)
1600 TRACE_(typelib
)("\n");
1602 if(offset
<0) { /* data are packed in here */
1603 V_VT(pVar
) = (offset
& 0x7c000000 )>> 26;
1604 V_I4(pVar
) = offset
& 0x3ffffff;
1607 MSFT_ReadLEWords(&(V_VT(pVar
)), sizeof(VARTYPE
), pcx
,
1608 pcx
->pTblDir
->pCustData
.offset
+ offset
);
1609 TRACE_(typelib
)("Vartype = %x\n", V_VT(pVar
));
1610 switch (V_VT(pVar
)){
1611 case VT_EMPTY
: /* FIXME: is this right? */
1612 case VT_NULL
: /* FIXME: is this right? */
1613 case VT_I2
: /* this should not happen */
1624 case VT_VOID
: /* FIXME: is this right? */
1632 case VT_DECIMAL
: /* FIXME: is this right? */
1635 /* pointer types with known behaviour */
1638 MSFT_ReadLEDWords(&size
, sizeof(INT
), pcx
, DO_NOT_SEEK
);
1641 DWORD origPos
= MSFT_Tell(pcx
), nullPos
;
1644 MSFT_Read(&next
, 1, pcx
, DO_NOT_SEEK
);
1646 nullPos
= MSFT_Tell(pcx
);
1647 size
= nullPos
- origPos
;
1648 MSFT_Seek(pcx
, origPos
);
1650 ptr
=TLB_Alloc(size
);/* allocate temp buffer */
1651 MSFT_Read(ptr
, size
, pcx
, DO_NOT_SEEK
);/* read string (ANSI) */
1652 V_BSTR(pVar
)=SysAllocStringLen(NULL
,size
);
1653 /* FIXME: do we need a AtoW conversion here? */
1654 V_UNION(pVar
, bstrVal
[size
])='\0';
1655 while(size
--) V_UNION(pVar
, bstrVal
[size
])=ptr
[size
];
1659 /* FIXME: this will not work AT ALL when the variant contains a pointer */
1666 case VT_USERDEFINED
:
1672 case VT_STREAMED_OBJECT
:
1673 case VT_STORED_OBJECT
:
1674 case VT_BLOB_OBJECT
:
1679 FIXME("VARTYPE %d is not supported, setting pointer to NULL\n",
1683 if(size
>0) /* (big|small) endian correct? */
1684 MSFT_Read(&(V_I2(pVar
)), size
, pcx
, DO_NOT_SEEK
);
1688 * create a linked list with custom data
1690 static int MSFT_CustData( TLBContext
*pcx
, int offset
, TLBCustData
** ppCustData
)
1696 TRACE_(typelib
)("\n");
1700 pNew
=TLB_Alloc(sizeof(TLBCustData
));
1701 MSFT_ReadLEDWords(&entry
, sizeof(entry
), pcx
, pcx
->pTblDir
->pCDGuids
.offset
+offset
);
1702 MSFT_ReadGuid(&(pNew
->guid
), entry
.GuidOffset
, pcx
);
1703 MSFT_ReadValue(&(pNew
->data
), entry
.DataOffset
, pcx
);
1704 /* add new custom data at head of the list */
1705 pNew
->next
=*ppCustData
;
1707 offset
= entry
.next
;
1712 static void MSFT_GetTdesc(TLBContext
*pcx
, INT type
, TYPEDESC
*pTd
,
1716 pTd
->vt
=type
& VT_TYPEMASK
;
1718 *pTd
=pcx
->pLibInfo
->pTypeDesc
[type
/(2*sizeof(INT
))];
1720 if(pTd
->vt
== VT_USERDEFINED
)
1721 MSFT_DoRefType(pcx
, pTI
->pTypeLib
, pTd
->u
.hreftype
);
1723 TRACE_(typelib
)("vt type = %X\n", pTd
->vt
);
1726 static void MSFT_ResolveReferencedTypes(TLBContext
*pcx
, ITypeInfoImpl
*pTI
, TYPEDESC
*lpTypeDesc
)
1728 /* resolve referenced type if any */
1731 switch (lpTypeDesc
->vt
)
1734 lpTypeDesc
= lpTypeDesc
->u
.lptdesc
;
1738 lpTypeDesc
= & (lpTypeDesc
->u
.lpadesc
->tdescElem
);
1741 case VT_USERDEFINED
:
1742 MSFT_DoRefType(pcx
, pTI
->pTypeLib
,
1743 lpTypeDesc
->u
.hreftype
);
1755 MSFT_DoFuncs(TLBContext
* pcx
,
1760 TLBFuncDesc
** pptfd
)
1763 * member information is stored in a data structure at offset
1764 * indicated by the memoffset field of the typeinfo structure
1765 * There are several distinctive parts.
1766 * The first part starts with a field that holds the total length
1767 * of this (first) part excluding this field. Then follow the records,
1768 * for each member there is one record.
1770 * The first entry is always the length of the record (including this
1772 * The rest of the record depends on the type of the member. If there is
1773 * a field indicating the member type (function, variable, interface, etc)
1774 * I have not found it yet. At this time we depend on the information
1775 * in the type info and the usual order how things are stored.
1777 * Second follows an array sized nrMEM*sizeof(INT) with a member id
1780 * Third is an equal sized array with file offsets to the name entry
1783 * The fourth and last (?) part is an array with offsets to the records
1784 * in the first part of this file segment.
1787 int infolen
, nameoffset
, reclength
, nrattributes
, i
;
1788 int recoffset
= offset
+ sizeof(INT
);
1790 char *recbuf
= HeapAlloc(GetProcessHeap(), 0, 0xffff);
1791 MSFT_FuncRecord
* pFuncRec
=(MSFT_FuncRecord
*) recbuf
;
1792 TLBFuncDesc
*ptfd_prev
= NULL
;
1794 TRACE_(typelib
)("\n");
1796 MSFT_ReadLEDWords(&infolen
, sizeof(INT
), pcx
, offset
);
1798 for ( i
= 0; i
< cFuncs
; i
++ )
1800 *pptfd
= TLB_Alloc(sizeof(TLBFuncDesc
));
1802 /* name, eventually add to a hash table */
1803 MSFT_ReadLEDWords(&nameoffset
, sizeof(INT
), pcx
,
1804 offset
+ infolen
+ (cFuncs
+ cVars
+ i
+ 1) * sizeof(INT
));
1806 /* nameoffset is sometimes -1 on the second half of a propget/propput
1807 * pair of functions */
1808 if ((nameoffset
== -1) && (i
> 0))
1809 (*pptfd
)->Name
= SysAllocString(ptfd_prev
->Name
);
1811 (*pptfd
)->Name
= MSFT_ReadName(pcx
, nameoffset
);
1813 /* read the function information record */
1814 MSFT_ReadLEDWords(&reclength
, sizeof(INT
), pcx
, recoffset
);
1816 reclength
&= 0xffff;
1818 MSFT_ReadLEDWords(pFuncRec
, reclength
- sizeof(INT
), pcx
, DO_NOT_SEEK
);
1820 /* do the attributes */
1821 nrattributes
= (reclength
- pFuncRec
->nrargs
* 3 * sizeof(int) - 0x18)
1824 if ( nrattributes
> 0 )
1826 (*pptfd
)->helpcontext
= pFuncRec
->OptAttr
[0] ;
1828 if ( nrattributes
> 1 )
1830 (*pptfd
)->HelpString
= MSFT_ReadString(pcx
,
1831 pFuncRec
->OptAttr
[1]) ;
1833 if ( nrattributes
> 2 )
1835 if ( pFuncRec
->FKCCIC
& 0x2000 )
1837 if (HIWORD(pFuncRec
->OptAttr
[2]) != 0)
1838 ERR("ordinal 0x%08x invalid, HIWORD != 0\n", pFuncRec
->OptAttr
[2]);
1839 (*pptfd
)->Entry
= (BSTR
)pFuncRec
->OptAttr
[2];
1843 (*pptfd
)->Entry
= MSFT_ReadString(pcx
,
1844 pFuncRec
->OptAttr
[2]);
1846 if( nrattributes
> 5 )
1848 (*pptfd
)->HelpStringContext
= pFuncRec
->OptAttr
[5] ;
1850 if ( nrattributes
> 6 && pFuncRec
->FKCCIC
& 0x80 )
1853 pFuncRec
->OptAttr
[6],
1854 &(*pptfd
)->pCustData
);
1860 (*pptfd
)->Entry
= (BSTR
)-1;
1865 /* fill the FuncDesc Structure */
1866 MSFT_ReadLEDWords( & (*pptfd
)->funcdesc
.memid
, sizeof(INT
), pcx
,
1867 offset
+ infolen
+ ( i
+ 1) * sizeof(INT
));
1869 (*pptfd
)->funcdesc
.funckind
= (pFuncRec
->FKCCIC
) & 0x7;
1870 (*pptfd
)->funcdesc
.invkind
= (pFuncRec
->FKCCIC
) >> 3 & 0xF;
1871 (*pptfd
)->funcdesc
.callconv
= (pFuncRec
->FKCCIC
) >> 8 & 0xF;
1872 (*pptfd
)->funcdesc
.cParams
= pFuncRec
->nrargs
;
1873 (*pptfd
)->funcdesc
.cParamsOpt
= pFuncRec
->nroargs
;
1874 (*pptfd
)->funcdesc
.oVft
= pFuncRec
->VtableOffset
;
1875 (*pptfd
)->funcdesc
.wFuncFlags
= LOWORD(pFuncRec
->Flags
) ;
1879 &(*pptfd
)->funcdesc
.elemdescFunc
.tdesc
,
1881 MSFT_ResolveReferencedTypes(pcx
, pTI
, &(*pptfd
)->funcdesc
.elemdescFunc
.tdesc
);
1883 /* do the parameters/arguments */
1884 if(pFuncRec
->nrargs
)
1887 MSFT_ParameterInfo paraminfo
;
1889 (*pptfd
)->funcdesc
.lprgelemdescParam
=
1890 TLB_Alloc(pFuncRec
->nrargs
* sizeof(ELEMDESC
));
1892 (*pptfd
)->pParamDesc
=
1893 TLB_Alloc(pFuncRec
->nrargs
* sizeof(TLBParDesc
));
1895 MSFT_ReadLEDWords(¶minfo
, sizeof(paraminfo
), pcx
,
1896 recoffset
+ reclength
- pFuncRec
->nrargs
* sizeof(MSFT_ParameterInfo
));
1898 for ( j
= 0 ; j
< pFuncRec
->nrargs
; j
++ )
1900 ELEMDESC
*elemdesc
= &(*pptfd
)->funcdesc
.lprgelemdescParam
[j
];
1907 elemdesc
->u
.paramdesc
.wParamFlags
= paraminfo
.Flags
;
1910 if (paraminfo
.oName
== -1)
1911 /* this occurs for [propput] or [propget] methods, so
1912 * we should just set the name of the parameter to the
1913 * name of the method. */
1914 (*pptfd
)->pParamDesc
[j
].Name
= SysAllocString((*pptfd
)->Name
);
1916 (*pptfd
)->pParamDesc
[j
].Name
=
1917 MSFT_ReadName( pcx
, paraminfo
.oName
);
1918 TRACE_(typelib
)("param[%d] = %s\n", j
, debugstr_w((*pptfd
)->pParamDesc
[j
].Name
));
1920 MSFT_ResolveReferencedTypes(pcx
, pTI
, &elemdesc
->tdesc
);
1923 if ( (elemdesc
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
) &&
1924 (pFuncRec
->FKCCIC
& 0x1000) )
1926 INT
* pInt
= (INT
*)((char *)pFuncRec
+
1928 (pFuncRec
->nrargs
* 4 + 1) * sizeof(INT
) );
1930 PARAMDESC
* pParamDesc
= &elemdesc
->u
.paramdesc
;
1932 pParamDesc
->pparamdescex
= TLB_Alloc(sizeof(PARAMDESCEX
));
1933 pParamDesc
->pparamdescex
->cBytes
= sizeof(PARAMDESCEX
);
1935 MSFT_ReadValue(&(pParamDesc
->pparamdescex
->varDefaultValue
),
1939 elemdesc
->u
.paramdesc
.pparamdescex
= NULL
;
1941 if ( nrattributes
> 7 + j
&& pFuncRec
->FKCCIC
& 0x80 )
1944 pFuncRec
->OptAttr
[7+j
],
1945 &(*pptfd
)->pParamDesc
[j
].pCustData
);
1948 /* SEEK value = jump to offset,
1949 * from there jump to the end of record,
1950 * go back by (j-1) arguments
1952 MSFT_ReadLEDWords( ¶minfo
,
1953 sizeof(MSFT_ParameterInfo
), pcx
,
1954 recoffset
+ reclength
- ((pFuncRec
->nrargs
- j
- 1)
1955 * sizeof(MSFT_ParameterInfo
)));
1959 /* scode is not used: archaic win16 stuff FIXME: right? */
1960 (*pptfd
)->funcdesc
.cScodes
= 0 ;
1961 (*pptfd
)->funcdesc
.lprgscode
= NULL
;
1964 pptfd
= & ((*pptfd
)->next
);
1965 recoffset
+= reclength
;
1967 HeapFree(GetProcessHeap(), 0, recbuf
);
1970 static void MSFT_DoVars(TLBContext
*pcx
, ITypeInfoImpl
*pTI
, int cFuncs
,
1971 int cVars
, int offset
, TLBVarDesc
** pptvd
)
1973 int infolen
, nameoffset
, reclength
;
1975 MSFT_VarRecord
* pVarRec
=(MSFT_VarRecord
*) recbuf
;
1979 TRACE_(typelib
)("\n");
1981 MSFT_ReadLEDWords(&infolen
,sizeof(INT
), pcx
, offset
);
1982 MSFT_ReadLEDWords(&recoffset
,sizeof(INT
), pcx
, offset
+ infolen
+
1983 ((cFuncs
+cVars
)*2+cFuncs
+ 1)*sizeof(INT
));
1984 recoffset
+= offset
+sizeof(INT
);
1985 for(i
=0;i
<cVars
;i
++){
1986 *pptvd
=TLB_Alloc(sizeof(TLBVarDesc
));
1987 /* name, eventually add to a hash table */
1988 MSFT_ReadLEDWords(&nameoffset
, sizeof(INT
), pcx
,
1989 offset
+ infolen
+ (2*cFuncs
+ cVars
+ i
+ 1) * sizeof(INT
));
1990 (*pptvd
)->Name
=MSFT_ReadName(pcx
, nameoffset
);
1991 /* read the variable information record */
1992 MSFT_ReadLEDWords(&reclength
, sizeof(INT
), pcx
, recoffset
);
1994 MSFT_ReadLEDWords(pVarRec
, reclength
- sizeof(INT
), pcx
, DO_NOT_SEEK
);
1996 if(reclength
>(6*sizeof(INT
)) )
1997 (*pptvd
)->HelpContext
=pVarRec
->HelpContext
;
1998 if(reclength
>(7*sizeof(INT
)) )
1999 (*pptvd
)->HelpString
= MSFT_ReadString(pcx
, pVarRec
->oHelpString
) ;
2000 if(reclength
>(8*sizeof(INT
)) )
2001 if(reclength
>(9*sizeof(INT
)) )
2002 (*pptvd
)->HelpStringContext
=pVarRec
->HelpStringContext
;
2003 /* fill the VarDesc Structure */
2004 MSFT_ReadLEDWords(&(*pptvd
)->vardesc
.memid
, sizeof(INT
), pcx
,
2005 offset
+ infolen
+ (cFuncs
+ i
+ 1) * sizeof(INT
));
2006 (*pptvd
)->vardesc
.varkind
= pVarRec
->VarKind
;
2007 (*pptvd
)->vardesc
.wVarFlags
= pVarRec
->Flags
;
2008 MSFT_GetTdesc(pcx
, pVarRec
->DataType
,
2009 &(*pptvd
)->vardesc
.elemdescVar
.tdesc
, pTI
);
2010 /* (*pptvd)->vardesc.lpstrSchema; is reserved (SDK) FIXME?? */
2011 if(pVarRec
->VarKind
== VAR_CONST
){
2012 (*pptvd
)->vardesc
.u
.lpvarValue
=TLB_Alloc(sizeof(VARIANT
));
2013 MSFT_ReadValue((*pptvd
)->vardesc
.u
.lpvarValue
,
2014 pVarRec
->OffsValue
, pcx
);
2016 (*pptvd
)->vardesc
.u
.oInst
=pVarRec
->OffsValue
;
2017 MSFT_ResolveReferencedTypes(pcx
, pTI
, &(*pptvd
)->vardesc
.elemdescVar
.tdesc
);
2018 pptvd
=&((*pptvd
)->next
);
2019 recoffset
+= reclength
;
2022 /* fill in data for a hreftype (offset). When the referenced type is contained
2023 * in the typelib, it's just an (file) offset in the type info base dir.
2024 * If comes from import, it's an offset+1 in the ImpInfo table
2026 static void MSFT_DoRefType(TLBContext
*pcx
, ITypeLibImpl
*pTL
,
2031 TRACE_(typelib
)("TLB context %p, TLB offset %x\n", pcx
, offset
);
2033 LIST_FOR_EACH_ENTRY(ref
, &pTL
->ref_list
, TLBRefType
, entry
)
2035 if(ref
->reference
== offset
) return;
2038 ref
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*ref
));
2039 list_add_tail(&pTL
->ref_list
, &ref
->entry
);
2041 if(!MSFT_HREFTYPE_INTHISFILE( offset
)) {
2042 /* external typelib */
2043 MSFT_ImpInfo impinfo
;
2044 TLBImpLib
*pImpLib
=(pcx
->pLibInfo
->pImpLibs
);
2046 TRACE_(typelib
)("offset %x, masked offset %x\n", offset
, offset
+ (offset
& 0xfffffffc));
2048 MSFT_ReadLEDWords(&impinfo
, sizeof(impinfo
), pcx
,
2049 pcx
->pTblDir
->pImpInfo
.offset
+ (offset
& 0xfffffffc));
2050 while (pImpLib
){ /* search the known offsets of all import libraries */
2051 if(pImpLib
->offset
==impinfo
.oImpFile
) break;
2052 pImpLib
=pImpLib
->next
;
2055 ref
->reference
= offset
;
2056 ref
->pImpTLInfo
= pImpLib
;
2057 if(impinfo
.flags
& MSFT_IMPINFO_OFFSET_IS_GUID
) {
2058 MSFT_ReadGuid(&ref
->guid
, impinfo
.oGuid
, pcx
);
2059 TRACE("importing by guid %s\n", debugstr_guid(&ref
->guid
));
2060 ref
->index
= TLB_REF_USE_GUID
;
2062 ref
->index
= impinfo
.oGuid
;
2064 ERR("Cannot find a reference\n");
2065 ref
->reference
= -1;
2066 ref
->pImpTLInfo
= TLB_REF_NOT_FOUND
;
2069 /* in this typelib */
2070 ref
->index
= MSFT_HREFTYPE_INDEX(offset
);
2071 ref
->reference
= offset
;
2072 ref
->pImpTLInfo
= TLB_REF_INTERNAL
;
2076 /* process Implemented Interfaces of a com class */
2077 static void MSFT_DoImplTypes(TLBContext
*pcx
, ITypeInfoImpl
*pTI
, int count
,
2081 MSFT_RefRecord refrec
;
2082 TLBImplType
**ppImpl
= &pTI
->impltypelist
;
2084 TRACE_(typelib
)("\n");
2086 for(i
=0;i
<count
;i
++){
2087 if(offset
<0) break; /* paranoia */
2088 *ppImpl
=TLB_Alloc(sizeof(**ppImpl
));
2089 MSFT_ReadLEDWords(&refrec
,sizeof(refrec
),pcx
,offset
+pcx
->pTblDir
->pRefTab
.offset
);
2090 MSFT_DoRefType(pcx
, pTI
->pTypeLib
, refrec
.reftype
);
2091 (*ppImpl
)->hRef
= refrec
.reftype
;
2092 (*ppImpl
)->implflags
=refrec
.flags
;
2093 (*ppImpl
)->ctCustData
=
2094 MSFT_CustData(pcx
, refrec
.oCustData
, &(*ppImpl
)->pCustData
);
2095 offset
=refrec
.onext
;
2096 ppImpl
=&((*ppImpl
)->next
);
2100 * process a typeinfo record
2102 static ITypeInfoImpl
* MSFT_DoTypeInfo(
2105 ITypeLibImpl
* pLibInfo
)
2107 MSFT_TypeInfoBase tiBase
;
2108 ITypeInfoImpl
*ptiRet
;
2110 TRACE_(typelib
)("count=%u\n", count
);
2112 ptiRet
= (ITypeInfoImpl
*) ITypeInfo_Constructor();
2113 MSFT_ReadLEDWords(&tiBase
, sizeof(tiBase
) ,pcx
,
2114 pcx
->pTblDir
->pTypeInfoTab
.offset
+count
*sizeof(tiBase
));
2116 /* this is where we are coming from */
2117 ptiRet
->pTypeLib
= pLibInfo
;
2118 ptiRet
->index
=count
;
2119 /* fill in the typeattr fields */
2121 MSFT_ReadGuid(&ptiRet
->TypeAttr
.guid
, tiBase
.posguid
, pcx
);
2122 ptiRet
->TypeAttr
.lcid
=pLibInfo
->LibAttr
.lcid
; /* FIXME: correct? */
2123 ptiRet
->TypeAttr
.lpstrSchema
=NULL
; /* reserved */
2124 ptiRet
->TypeAttr
.cbSizeInstance
=tiBase
.size
;
2125 ptiRet
->TypeAttr
.typekind
=tiBase
.typekind
& 0xF;
2126 ptiRet
->TypeAttr
.cFuncs
=LOWORD(tiBase
.cElement
);
2127 ptiRet
->TypeAttr
.cVars
=HIWORD(tiBase
.cElement
);
2128 ptiRet
->TypeAttr
.cbAlignment
=(tiBase
.typekind
>> 11 )& 0x1F; /* there are more flags there */
2129 ptiRet
->TypeAttr
.wTypeFlags
=tiBase
.flags
;
2130 ptiRet
->TypeAttr
.wMajorVerNum
=LOWORD(tiBase
.version
);
2131 ptiRet
->TypeAttr
.wMinorVerNum
=HIWORD(tiBase
.version
);
2132 ptiRet
->TypeAttr
.cImplTypes
=tiBase
.cImplTypes
;
2133 ptiRet
->TypeAttr
.cbSizeVft
=tiBase
.cbSizeVft
; /* FIXME: this is only the non inherited part */
2134 if(ptiRet
->TypeAttr
.typekind
== TKIND_ALIAS
)
2135 MSFT_GetTdesc(pcx
, tiBase
.datatype1
,
2136 &ptiRet
->TypeAttr
.tdescAlias
, ptiRet
);
2139 /* IDLDESC idldescType; *//* never saw this one != zero */
2141 /* name, eventually add to a hash table */
2142 ptiRet
->Name
=MSFT_ReadName(pcx
, tiBase
.NameOffset
);
2143 ptiRet
->hreftype
= MSFT_ReadHreftype(pcx
, tiBase
.NameOffset
);
2144 TRACE_(typelib
)("reading %s\n", debugstr_w(ptiRet
->Name
));
2146 ptiRet
->DocString
=MSFT_ReadString(pcx
, tiBase
.docstringoffs
);
2147 ptiRet
->dwHelpStringContext
=tiBase
.helpstringcontext
;
2148 ptiRet
->dwHelpContext
=tiBase
.helpcontext
;
2150 if (ptiRet
->TypeAttr
.typekind
== TKIND_MODULE
)
2151 ptiRet
->DllName
= MSFT_ReadString(pcx
, tiBase
.datatype1
);
2153 /* note: InfoType's Help file and HelpStringDll come from the containing
2154 * library. Further HelpString and Docstring appear to be the same thing :(
2157 if(ptiRet
->TypeAttr
.cFuncs
>0 )
2158 MSFT_DoFuncs(pcx
, ptiRet
, ptiRet
->TypeAttr
.cFuncs
,
2159 ptiRet
->TypeAttr
.cVars
,
2160 tiBase
.memoffset
, & ptiRet
->funclist
);
2162 if(ptiRet
->TypeAttr
.cVars
>0 )
2163 MSFT_DoVars(pcx
, ptiRet
, ptiRet
->TypeAttr
.cFuncs
,
2164 ptiRet
->TypeAttr
.cVars
,
2165 tiBase
.memoffset
, & ptiRet
->varlist
);
2166 if(ptiRet
->TypeAttr
.cImplTypes
>0 ) {
2167 switch(ptiRet
->TypeAttr
.typekind
)
2170 MSFT_DoImplTypes(pcx
, ptiRet
, ptiRet
->TypeAttr
.cImplTypes
,
2173 case TKIND_DISPATCH
:
2174 /* This is not -1 when the interface is a non-base dual interface or
2175 when a dispinterface wraps an interface, i.e., the idl 'dispinterface x {interface y;};'.
2176 Note however that GetRefTypeOfImplType(0) always returns a ref to IDispatch and
2180 if (tiBase
.datatype1
!= -1)
2182 ptiRet
->impltypelist
= TLB_Alloc(sizeof(TLBImplType
));
2183 ptiRet
->impltypelist
->hRef
= tiBase
.datatype1
;
2184 MSFT_DoRefType(pcx
, pLibInfo
, tiBase
.datatype1
);
2188 ptiRet
->impltypelist
=TLB_Alloc(sizeof(TLBImplType
));
2189 MSFT_DoRefType(pcx
, pLibInfo
, tiBase
.datatype1
);
2190 ptiRet
->impltypelist
->hRef
= tiBase
.datatype1
;
2195 MSFT_CustData(pcx
, tiBase
.oCustData
, &ptiRet
->pCustData
);
2197 TRACE_(typelib
)("%s guid: %s kind:%s\n",
2198 debugstr_w(ptiRet
->Name
),
2199 debugstr_guid(&ptiRet
->TypeAttr
.guid
),
2200 typekind_desc
[ptiRet
->TypeAttr
.typekind
]);
2205 /* Because type library parsing has some degree of overhead, and some apps repeatedly load the same
2206 * typelibs over and over, we cache them here. According to MSDN Microsoft have a similar scheme in
2207 * place. This will cause a deliberate memory leak, but generally losing RAM for cycles is an acceptable
2210 static ITypeLibImpl
*tlb_cache_first
;
2211 static CRITICAL_SECTION cache_section
;
2212 static CRITICAL_SECTION_DEBUG cache_section_debug
=
2214 0, 0, &cache_section
,
2215 { &cache_section_debug
.ProcessLocksList
, &cache_section_debug
.ProcessLocksList
},
2216 0, 0, { (DWORD_PTR
)(__FILE__
": typelib loader cache") }
2218 static CRITICAL_SECTION cache_section
= { &cache_section_debug
, -1, 0, 0, 0, 0 };
2221 typedef struct TLB_PEFile
2223 const IUnknownVtbl
*lpvtbl
;
2226 HRSRC typelib_resource
;
2227 HGLOBAL typelib_global
;
2228 LPVOID typelib_base
;
2231 static HRESULT WINAPI
TLB_PEFile_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
2233 if (IsEqualIID(riid
, &IID_IUnknown
))
2236 IUnknown_AddRef(iface
);
2240 return E_NOINTERFACE
;
2243 static ULONG WINAPI
TLB_PEFile_AddRef(IUnknown
*iface
)
2245 TLB_PEFile
*This
= (TLB_PEFile
*)iface
;
2246 return InterlockedIncrement(&This
->refs
);
2249 static ULONG WINAPI
TLB_PEFile_Release(IUnknown
*iface
)
2251 TLB_PEFile
*This
= (TLB_PEFile
*)iface
;
2252 ULONG refs
= InterlockedDecrement(&This
->refs
);
2255 if (This
->typelib_global
)
2256 FreeResource(This
->typelib_global
);
2258 FreeLibrary(This
->dll
);
2259 HeapFree(GetProcessHeap(), 0, This
);
2264 static const IUnknownVtbl TLB_PEFile_Vtable
=
2266 TLB_PEFile_QueryInterface
,
2271 static HRESULT
TLB_PEFile_Open(LPCWSTR path
, INT index
, LPVOID
*ppBase
, DWORD
*pdwTLBLength
, IUnknown
**ppFile
)
2275 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
2277 return E_OUTOFMEMORY
;
2279 This
->lpvtbl
= &TLB_PEFile_Vtable
;
2282 This
->typelib_resource
= NULL
;
2283 This
->typelib_global
= NULL
;
2284 This
->typelib_base
= NULL
;
2286 This
->dll
= LoadLibraryExW(path
, 0, DONT_RESOLVE_DLL_REFERENCES
|
2287 LOAD_LIBRARY_AS_DATAFILE
| LOAD_WITH_ALTERED_SEARCH_PATH
);
2291 static const WCHAR TYPELIBW
[] = {'T','Y','P','E','L','I','B',0};
2292 This
->typelib_resource
= FindResourceW(This
->dll
, MAKEINTRESOURCEW(index
), TYPELIBW
);
2293 if (This
->typelib_resource
)
2295 This
->typelib_global
= LoadResource(This
->dll
, This
->typelib_resource
);
2296 if (This
->typelib_global
)
2298 This
->typelib_base
= LockResource(This
->typelib_global
);
2300 if (This
->typelib_base
)
2302 *pdwTLBLength
= SizeofResource(This
->dll
, This
->typelib_resource
);
2303 *ppBase
= This
->typelib_base
;
2304 *ppFile
= (IUnknown
*)&This
->lpvtbl
;
2311 TLB_PEFile_Release((IUnknown
*)&This
->lpvtbl
);
2312 return TYPE_E_CANTLOADLIBRARY
;
2316 typedef struct TLB_Mapping
2318 const IUnknownVtbl
*lpvtbl
;
2322 LPVOID typelib_base
;
2325 static HRESULT WINAPI
TLB_Mapping_QueryInterface(IUnknown
*iface
, REFIID riid
, void **ppv
)
2327 if (IsEqualIID(riid
, &IID_IUnknown
))
2330 IUnknown_AddRef(iface
);
2334 return E_NOINTERFACE
;
2337 static ULONG WINAPI
TLB_Mapping_AddRef(IUnknown
*iface
)
2339 TLB_Mapping
*This
= (TLB_Mapping
*)iface
;
2340 return InterlockedIncrement(&This
->refs
);
2343 static ULONG WINAPI
TLB_Mapping_Release(IUnknown
*iface
)
2345 TLB_Mapping
*This
= (TLB_Mapping
*)iface
;
2346 ULONG refs
= InterlockedDecrement(&This
->refs
);
2349 if (This
->typelib_base
)
2350 UnmapViewOfFile(This
->typelib_base
);
2352 CloseHandle(This
->mapping
);
2353 if (This
->file
!= INVALID_HANDLE_VALUE
)
2354 CloseHandle(This
->file
);
2355 HeapFree(GetProcessHeap(), 0, This
);
2360 static const IUnknownVtbl TLB_Mapping_Vtable
=
2362 TLB_Mapping_QueryInterface
,
2367 static HRESULT
TLB_Mapping_Open(LPCWSTR path
, LPVOID
*ppBase
, DWORD
*pdwTLBLength
, IUnknown
**ppFile
)
2371 This
= HeapAlloc(GetProcessHeap(), 0, sizeof(*This
));
2373 return E_OUTOFMEMORY
;
2375 This
->lpvtbl
= &TLB_Mapping_Vtable
;
2377 This
->file
= INVALID_HANDLE_VALUE
;
2378 This
->mapping
= NULL
;
2379 This
->typelib_base
= NULL
;
2381 This
->file
= CreateFileW(path
, GENERIC_READ
, FILE_SHARE_READ
, NULL
, OPEN_EXISTING
, 0, 0);
2382 if (INVALID_HANDLE_VALUE
!= This
->file
)
2384 This
->mapping
= CreateFileMappingW(This
->file
, NULL
, PAGE_READONLY
| SEC_COMMIT
, 0, 0, NULL
);
2387 This
->typelib_base
= MapViewOfFile(This
->mapping
, FILE_MAP_READ
, 0, 0, 0);
2388 if(This
->typelib_base
)
2390 /* retrieve file size */
2391 *pdwTLBLength
= GetFileSize(This
->file
, NULL
);
2392 *ppBase
= This
->typelib_base
;
2393 *ppFile
= (IUnknown
*)&This
->lpvtbl
;
2399 IUnknown_Release((IUnknown
*)&This
->lpvtbl
);
2400 return TYPE_E_CANTLOADLIBRARY
;
2403 /****************************************************************************
2406 * find the type of the typelib file and map the typelib resource into
2409 #define MSFT_SIGNATURE 0x5446534D /* "MSFT" */
2410 #define SLTG_SIGNATURE 0x47544c53 /* "SLTG" */
2411 static HRESULT
TLB_ReadTypeLib(LPCWSTR pszFileName
, LPWSTR pszPath
, UINT cchPath
, ITypeLib2
**ppTypeLib
)
2413 ITypeLibImpl
*entry
;
2416 LPWSTR index_str
, file
= (LPWSTR
)pszFileName
;
2417 LPVOID pBase
= NULL
;
2418 DWORD dwTLBLength
= 0;
2419 IUnknown
*pFile
= NULL
;
2423 index_str
= strrchrW(pszFileName
, '\\');
2424 if(index_str
&& *++index_str
!= '\0')
2427 long idx
= strtolW(index_str
, &end_ptr
, 10);
2428 if(*end_ptr
== '\0')
2430 int str_len
= index_str
- pszFileName
- 1;
2432 file
= HeapAlloc(GetProcessHeap(), 0, (str_len
+ 1) * sizeof(WCHAR
));
2433 memcpy(file
, pszFileName
, str_len
* sizeof(WCHAR
));
2438 if(!SearchPathW(NULL
, file
, NULL
, cchPath
, pszPath
, NULL
))
2440 if(strchrW(file
, '\\'))
2442 lstrcpyW(pszPath
, file
);
2446 int len
= GetSystemDirectoryW(pszPath
, cchPath
);
2447 pszPath
[len
] = '\\';
2448 memcpy(pszPath
+ len
+ 1, file
, (strlenW(file
) + 1) * sizeof(WCHAR
));
2452 if(file
!= pszFileName
) HeapFree(GetProcessHeap(), 0, file
);
2454 TRACE_(typelib
)("File %s index %d\n", debugstr_w(pszPath
), index
);
2456 /* We look the path up in the typelib cache. If found, we just addref it, and return the pointer. */
2457 EnterCriticalSection(&cache_section
);
2458 for (entry
= tlb_cache_first
; entry
!= NULL
; entry
= entry
->next
)
2460 if (!strcmpiW(entry
->path
, pszPath
) && entry
->index
== index
)
2462 TRACE("cache hit\n");
2463 *ppTypeLib
= (ITypeLib2
*)entry
;
2464 ITypeLib_AddRef(*ppTypeLib
);
2465 LeaveCriticalSection(&cache_section
);
2469 LeaveCriticalSection(&cache_section
);
2471 /* now actually load and parse the typelib */
2473 ret
= TLB_PEFile_Open(pszPath
, index
, &pBase
, &dwTLBLength
, &pFile
);
2474 if (ret
== TYPE_E_CANTLOADLIBRARY
)
2475 ret
= TLB_Mapping_Open(pszPath
, &pBase
, &dwTLBLength
, &pFile
);
2478 if (dwTLBLength
>= 4)
2480 DWORD dwSignature
= FromLEDWord(*((DWORD
*) pBase
));
2481 if (dwSignature
== MSFT_SIGNATURE
)
2482 *ppTypeLib
= ITypeLib2_Constructor_MSFT(pBase
, dwTLBLength
);
2483 else if (dwSignature
== SLTG_SIGNATURE
)
2484 *ppTypeLib
= ITypeLib2_Constructor_SLTG(pBase
, dwTLBLength
);
2487 FIXME("Header type magic 0x%08x not supported.\n",dwSignature
);
2488 ret
= TYPE_E_CANTLOADLIBRARY
;
2492 ret
= TYPE_E_CANTLOADLIBRARY
;
2493 IUnknown_Release(pFile
);
2497 ITypeLibImpl
*impl
= (ITypeLibImpl
*)*ppTypeLib
;
2499 TRACE("adding to cache\n");
2500 impl
->path
= HeapAlloc(GetProcessHeap(), 0, (strlenW(pszPath
)+1) * sizeof(WCHAR
));
2501 lstrcpyW(impl
->path
, pszPath
);
2502 /* We should really canonicalise the path here. */
2503 impl
->index
= index
;
2505 /* FIXME: check if it has added already in the meantime */
2506 EnterCriticalSection(&cache_section
);
2507 if ((impl
->next
= tlb_cache_first
) != NULL
) impl
->next
->prev
= impl
;
2509 tlb_cache_first
= impl
;
2510 LeaveCriticalSection(&cache_section
);
2513 ERR("Loading of typelib %s failed with error %d\n", debugstr_w(pszFileName
), GetLastError());
2518 /*================== ITypeLib(2) Methods ===================================*/
2520 static ITypeLibImpl
* TypeLibImpl_Constructor(void)
2522 ITypeLibImpl
* pTypeLibImpl
;
2524 pTypeLibImpl
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(ITypeLibImpl
));
2525 if (!pTypeLibImpl
) return NULL
;
2527 pTypeLibImpl
->lpVtbl
= &tlbvt
;
2528 pTypeLibImpl
->lpVtblTypeComp
= &tlbtcvt
;
2529 pTypeLibImpl
->ref
= 1;
2531 list_init(&pTypeLibImpl
->ref_list
);
2532 pTypeLibImpl
->dispatch_href
= -1;
2534 return pTypeLibImpl
;
2537 /****************************************************************************
2538 * ITypeLib2_Constructor_MSFT
2540 * loading an MSFT typelib from an in-memory image
2542 static ITypeLib2
* ITypeLib2_Constructor_MSFT(LPVOID pLib
, DWORD dwTLBLength
)
2546 MSFT_Header tlbHeader
;
2547 MSFT_SegDir tlbSegDir
;
2548 ITypeLibImpl
* pTypeLibImpl
;
2550 TRACE("%p, TLB length = %d\n", pLib
, dwTLBLength
);
2552 pTypeLibImpl
= TypeLibImpl_Constructor();
2553 if (!pTypeLibImpl
) return NULL
;
2555 /* get pointer to beginning of typelib data */
2559 cx
.pLibInfo
= pTypeLibImpl
;
2560 cx
.length
= dwTLBLength
;
2563 MSFT_ReadLEDWords((void*)&tlbHeader
, sizeof(tlbHeader
), &cx
, 0);
2564 TRACE_(typelib
)("header:\n");
2565 TRACE_(typelib
)("\tmagic1=0x%08x ,magic2=0x%08x\n",tlbHeader
.magic1
,tlbHeader
.magic2
);
2566 if (tlbHeader
.magic1
!= MSFT_SIGNATURE
) {
2567 FIXME("Header type magic 0x%08x not supported.\n",tlbHeader
.magic1
);
2570 TRACE_(typelib
)("\tdispatchpos = 0x%x\n", tlbHeader
.dispatchpos
);
2572 /* there is a small amount of information here until the next important
2574 * the segment directory . Try to calculate the amount of data */
2575 lPSegDir
= sizeof(tlbHeader
) + (tlbHeader
.nrtypeinfos
)*4 + ((tlbHeader
.varflags
& HELPDLLFLAG
)? 4 :0);
2577 /* now read the segment directory */
2578 TRACE("read segment directory (at %ld)\n",lPSegDir
);
2579 MSFT_ReadLEDWords(&tlbSegDir
, sizeof(tlbSegDir
), &cx
, lPSegDir
);
2580 cx
.pTblDir
= &tlbSegDir
;
2582 /* just check two entries */
2583 if ( tlbSegDir
.pTypeInfoTab
.res0c
!= 0x0F || tlbSegDir
.pImpInfo
.res0c
!= 0x0F)
2585 ERR("cannot find the table directory, ptr=0x%lx\n",lPSegDir
);
2586 HeapFree(GetProcessHeap(),0,pTypeLibImpl
);
2590 /* now fill our internal data */
2591 /* TLIBATTR fields */
2592 MSFT_ReadGuid(&pTypeLibImpl
->LibAttr
.guid
, tlbHeader
.posguid
, &cx
);
2594 /* pTypeLibImpl->LibAttr.lcid = tlbHeader.lcid;*/
2595 /* Windows seems to have zero here, is this correct? */
2596 if(SUBLANGID(tlbHeader
.lcid
) == SUBLANG_NEUTRAL
)
2597 pTypeLibImpl
->LibAttr
.lcid
= MAKELCID(MAKELANGID(PRIMARYLANGID(tlbHeader
.lcid
),0),0);
2599 pTypeLibImpl
->LibAttr
.lcid
= 0;
2601 pTypeLibImpl
->LibAttr
.syskind
= tlbHeader
.varflags
& 0x0f; /* check the mask */
2602 pTypeLibImpl
->LibAttr
.wMajorVerNum
= LOWORD(tlbHeader
.version
);
2603 pTypeLibImpl
->LibAttr
.wMinorVerNum
= HIWORD(tlbHeader
.version
);
2604 pTypeLibImpl
->LibAttr
.wLibFlags
= (WORD
) tlbHeader
.flags
& 0xffff;/* check mask */
2606 /* name, eventually add to a hash table */
2607 pTypeLibImpl
->Name
= MSFT_ReadName(&cx
, tlbHeader
.NameOffset
);
2610 pTypeLibImpl
->DocString
= MSFT_ReadString(&cx
, tlbHeader
.helpstring
);
2611 pTypeLibImpl
->HelpFile
= MSFT_ReadString(&cx
, tlbHeader
.helpfile
);
2613 if( tlbHeader
.varflags
& HELPDLLFLAG
)
2616 MSFT_ReadLEDWords(&offset
, sizeof(offset
), &cx
, sizeof(tlbHeader
));
2617 pTypeLibImpl
->HelpStringDll
= MSFT_ReadString(&cx
, offset
);
2620 pTypeLibImpl
->dwHelpContext
= tlbHeader
.helpstringcontext
;
2623 if(tlbHeader
.CustomDataOffset
>= 0)
2625 pTypeLibImpl
->ctCustData
= MSFT_CustData(&cx
, tlbHeader
.CustomDataOffset
, &pTypeLibImpl
->pCustData
);
2628 /* fill in type descriptions */
2629 if(tlbSegDir
.pTypdescTab
.length
> 0)
2631 int i
, j
, cTD
= tlbSegDir
.pTypdescTab
.length
/ (2*sizeof(INT
));
2633 pTypeLibImpl
->ctTypeDesc
= cTD
;
2634 pTypeLibImpl
->pTypeDesc
= TLB_Alloc( cTD
* sizeof(TYPEDESC
));
2635 MSFT_ReadLEWords(td
, sizeof(td
), &cx
, tlbSegDir
.pTypdescTab
.offset
);
2638 /* FIXME: add several sanity checks here */
2639 pTypeLibImpl
->pTypeDesc
[i
].vt
= td
[0] & VT_TYPEMASK
;
2640 if(td
[0] == VT_PTR
|| td
[0] == VT_SAFEARRAY
)
2642 /* FIXME: check safearray */
2644 pTypeLibImpl
->pTypeDesc
[i
].u
.lptdesc
= & stndTypeDesc
[td
[2]];
2646 pTypeLibImpl
->pTypeDesc
[i
].u
.lptdesc
= & pTypeLibImpl
->pTypeDesc
[td
[2]/8];
2648 else if(td
[0] == VT_CARRAY
)
2650 /* array descr table here */
2651 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
= (void *)((int) td
[2]); /* temp store offset in*/
2653 else if(td
[0] == VT_USERDEFINED
)
2655 pTypeLibImpl
->pTypeDesc
[i
].u
.hreftype
= MAKELONG(td
[2],td
[3]);
2657 if(++i
<cTD
) MSFT_ReadLEWords(td
, sizeof(td
), &cx
, DO_NOT_SEEK
);
2660 /* second time around to fill the array subscript info */
2663 if(pTypeLibImpl
->pTypeDesc
[i
].vt
!= VT_CARRAY
) continue;
2664 if(tlbSegDir
.pArrayDescriptions
.offset
>0)
2666 MSFT_ReadLEWords(td
, sizeof(td
), &cx
, tlbSegDir
.pArrayDescriptions
.offset
+ (int) pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
);
2667 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
= TLB_Alloc(sizeof(ARRAYDESC
)+sizeof(SAFEARRAYBOUND
)*(td
[3]-1));
2670 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
->tdescElem
.vt
= td
[0] & VT_TYPEMASK
;
2672 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
->tdescElem
= stndTypeDesc
[td
[0]/8];
2674 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
->cDims
= td
[2];
2676 for(j
= 0; j
<td
[2]; j
++)
2678 MSFT_ReadLEDWords(& pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
->rgbounds
[j
].cElements
,
2679 sizeof(INT
), &cx
, DO_NOT_SEEK
);
2680 MSFT_ReadLEDWords(& pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
->rgbounds
[j
].lLbound
,
2681 sizeof(INT
), &cx
, DO_NOT_SEEK
);
2686 pTypeLibImpl
->pTypeDesc
[i
].u
.lpadesc
= NULL
;
2687 ERR("didn't find array description data\n");
2692 /* imported type libs */
2693 if(tlbSegDir
.pImpFiles
.offset
>0)
2695 TLBImpLib
**ppImpLib
= &(pTypeLibImpl
->pImpLibs
);
2696 int oGuid
, offset
= tlbSegDir
.pImpFiles
.offset
;
2699 while(offset
< tlbSegDir
.pImpFiles
.offset
+tlbSegDir
.pImpFiles
.length
)
2704 *ppImpLib
= TLB_Alloc(sizeof(TLBImpLib
));
2705 (*ppImpLib
)->offset
= offset
- tlbSegDir
.pImpFiles
.offset
;
2706 MSFT_ReadLEDWords(&oGuid
, sizeof(INT
), &cx
, offset
);
2708 MSFT_ReadLEDWords(&(*ppImpLib
)->lcid
, sizeof(LCID
), &cx
, DO_NOT_SEEK
);
2709 MSFT_ReadLEWords(&(*ppImpLib
)->wVersionMajor
, sizeof(WORD
), &cx
, DO_NOT_SEEK
);
2710 MSFT_ReadLEWords(&(*ppImpLib
)->wVersionMinor
, sizeof(WORD
), &cx
, DO_NOT_SEEK
);
2711 MSFT_ReadLEWords(& size
, sizeof(UINT16
), &cx
, DO_NOT_SEEK
);
2714 name
= TLB_Alloc(size
+1);
2715 MSFT_Read(name
, size
, &cx
, DO_NOT_SEEK
);
2716 len
= MultiByteToWideChar(CP_ACP
, 0, name
, -1, NULL
, 0 );
2717 (*ppImpLib
)->name
= TLB_Alloc(len
* sizeof(WCHAR
));
2718 MultiByteToWideChar(CP_ACP
, 0, name
, -1, (*ppImpLib
)->name
, len
);
2721 MSFT_ReadGuid(&(*ppImpLib
)->guid
, oGuid
, &cx
);
2722 offset
= (offset
+ sizeof(INT
) + sizeof(DWORD
) + sizeof(LCID
) + sizeof(UINT16
) + size
+ 3) & ~3;
2724 ppImpLib
= &(*ppImpLib
)->next
;
2728 pTypeLibImpl
->dispatch_href
= tlbHeader
.dispatchpos
;
2729 if(pTypeLibImpl
->dispatch_href
!= -1)
2730 MSFT_DoRefType(&cx
, pTypeLibImpl
, pTypeLibImpl
->dispatch_href
);
2733 if(tlbHeader
.nrtypeinfos
>= 0 )
2735 /*pTypeLibImpl->TypeInfoCount=tlbHeader.nrtypeinfos; */
2736 ITypeInfoImpl
**ppTI
= &(pTypeLibImpl
->pTypeInfo
);
2739 for(i
= 0; i
< tlbHeader
.nrtypeinfos
; i
++)
2741 *ppTI
= MSFT_DoTypeInfo(&cx
, i
, pTypeLibImpl
);
2743 ppTI
= &((*ppTI
)->next
);
2744 (pTypeLibImpl
->TypeInfoCount
)++;
2748 TRACE("(%p)\n", pTypeLibImpl
);
2749 return (ITypeLib2
*) pTypeLibImpl
;
2753 static BSTR
TLB_MultiByteToBSTR(const char *ptr
)
2759 len
= MultiByteToWideChar(CP_ACP
, 0, ptr
, -1, NULL
, 0);
2760 nameW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
2761 MultiByteToWideChar(CP_ACP
, 0, ptr
, -1, nameW
, len
);
2762 ret
= SysAllocString(nameW
);
2763 HeapFree(GetProcessHeap(), 0, nameW
);
2767 static BOOL
TLB_GUIDFromString(const char *str
, GUID
*guid
)
2773 if(sscanf(str
, "%x-%hx-%hx-%hx", &guid
->Data1
, &guid
->Data2
, &guid
->Data3
, &s
) != 4) {
2774 FIXME("Can't parse guid %s\n", debugstr_guid(guid
));
2778 guid
->Data4
[0] = s
>> 8;
2779 guid
->Data4
[1] = s
& 0xff;
2782 for(i
= 0; i
< 6; i
++) {
2783 memcpy(b
, str
+ 24 + 2 * i
, 2);
2784 guid
->Data4
[i
+ 2] = strtol(b
, NULL
, 16);
2789 static WORD
SLTG_ReadString(const char *ptr
, BSTR
*pBstr
)
2796 bytelen
= *(const WORD
*)ptr
;
2797 if(bytelen
== 0xffff) return 2;
2798 len
= MultiByteToWideChar(CP_ACP
, 0, ptr
+ 2, bytelen
, NULL
, 0);
2799 nameW
= HeapAlloc(GetProcessHeap(), 0, len
* sizeof(WCHAR
));
2800 len
= MultiByteToWideChar(CP_ACP
, 0, ptr
+ 2, bytelen
, nameW
, len
);
2801 *pBstr
= SysAllocStringLen(nameW
, len
);
2802 HeapFree(GetProcessHeap(), 0, nameW
);
2806 static WORD
SLTG_ReadStringA(const char *ptr
, char **str
)
2811 bytelen
= *(const WORD
*)ptr
;
2812 if(bytelen
== 0xffff) return 2;
2813 *str
= HeapAlloc(GetProcessHeap(), 0, bytelen
+ 1);
2814 memcpy(*str
, ptr
+ 2, bytelen
);
2815 (*str
)[bytelen
] = '\0';
2819 static DWORD
SLTG_ReadLibBlk(LPVOID pLibBlk
, ITypeLibImpl
*pTypeLibImpl
)
2821 char *ptr
= pLibBlk
;
2824 if((w
= *(WORD
*)ptr
) != SLTG_LIBBLK_MAGIC
) {
2825 FIXME("libblk magic = %04x\n", w
);
2830 if((w
= *(WORD
*)ptr
) != 0xffff) {
2831 FIXME("LibBlk.res06 = %04x. Assumung string and skipping\n", w
);
2836 ptr
+= SLTG_ReadString(ptr
, &pTypeLibImpl
->DocString
);
2838 ptr
+= SLTG_ReadString(ptr
, &pTypeLibImpl
->HelpFile
);
2840 pTypeLibImpl
->dwHelpContext
= *(DWORD
*)ptr
;
2843 pTypeLibImpl
->LibAttr
.syskind
= *(WORD
*)ptr
;
2846 if(SUBLANGID(*(WORD
*)ptr
) == SUBLANG_NEUTRAL
)
2847 pTypeLibImpl
->LibAttr
.lcid
= MAKELCID(MAKELANGID(PRIMARYLANGID(*(WORD
*)ptr
),0),0);
2849 pTypeLibImpl
->LibAttr
.lcid
= 0;
2852 ptr
+= 4; /* skip res12 */
2854 pTypeLibImpl
->LibAttr
.wLibFlags
= *(WORD
*)ptr
;
2857 pTypeLibImpl
->LibAttr
.wMajorVerNum
= *(WORD
*)ptr
;
2860 pTypeLibImpl
->LibAttr
.wMinorVerNum
= *(WORD
*)ptr
;
2863 memcpy(&pTypeLibImpl
->LibAttr
.guid
, ptr
, sizeof(GUID
));
2864 ptr
+= sizeof(GUID
);
2866 return ptr
- (char*)pLibBlk
;
2869 /* stores a mapping between the sltg typeinfo's references and the typelib's HREFTYPEs */
2874 } sltg_ref_lookup_t
;
2876 static HRESULT
sltg_get_typelib_ref(const sltg_ref_lookup_t
*table
, DWORD typeinfo_ref
,
2877 HREFTYPE
*typelib_ref
)
2879 if(typeinfo_ref
< table
->num
)
2881 *typelib_ref
= table
->refs
[typeinfo_ref
];
2885 ERR_(typelib
)("Unable to find reference\n");
2890 static WORD
*SLTG_DoType(WORD
*pType
, char *pBlk
, TYPEDESC
*pTD
, const sltg_ref_lookup_t
*ref_lookup
)
2895 if((*pType
& 0xe00) == 0xe00) {
2897 pTD
->u
.lptdesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2899 pTD
= pTD
->u
.lptdesc
;
2901 switch(*pType
& 0x3f) {
2904 pTD
->u
.lptdesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2906 pTD
= pTD
->u
.lptdesc
;
2909 case VT_USERDEFINED
:
2910 pTD
->vt
= VT_USERDEFINED
;
2911 sltg_get_typelib_ref(ref_lookup
, *(++pType
) / 4, &pTD
->u
.hreftype
);
2917 /* *(pType+1) is offset to a SAFEARRAY, *(pType+2) is type of
2920 SAFEARRAY
*pSA
= (SAFEARRAY
*)(pBlk
+ *(++pType
));
2922 pTD
->vt
= VT_CARRAY
;
2923 pTD
->u
.lpadesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2925 (pSA
->cDims
- 1) * sizeof(SAFEARRAYBOUND
));
2926 pTD
->u
.lpadesc
->cDims
= pSA
->cDims
;
2927 memcpy(pTD
->u
.lpadesc
->rgbounds
, pSA
->rgsabound
,
2928 pSA
->cDims
* sizeof(SAFEARRAYBOUND
));
2930 pTD
= &pTD
->u
.lpadesc
->tdescElem
;
2936 /* FIXME: *(pType+1) gives an offset to SAFEARRAY, is this
2940 pTD
->vt
= VT_SAFEARRAY
;
2941 pTD
->u
.lptdesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
2943 pTD
= pTD
->u
.lptdesc
;
2947 pTD
->vt
= *pType
& 0x3f;
2956 static WORD
*SLTG_DoElem(WORD
*pType
, char *pBlk
,
2957 ELEMDESC
*pElem
, const sltg_ref_lookup_t
*ref_lookup
)
2959 /* Handle [in/out] first */
2960 if((*pType
& 0xc000) == 0xc000)
2961 pElem
->u
.paramdesc
.wParamFlags
= PARAMFLAG_NONE
;
2962 else if(*pType
& 0x8000)
2963 pElem
->u
.paramdesc
.wParamFlags
= PARAMFLAG_FIN
| PARAMFLAG_FOUT
;
2964 else if(*pType
& 0x4000)
2965 pElem
->u
.paramdesc
.wParamFlags
= PARAMFLAG_FOUT
;
2967 pElem
->u
.paramdesc
.wParamFlags
= PARAMFLAG_FIN
;
2970 pElem
->u
.paramdesc
.wParamFlags
|= PARAMFLAG_FLCID
;
2973 pElem
->u
.paramdesc
.wParamFlags
|= PARAMFLAG_FRETVAL
;
2975 return SLTG_DoType(pType
, pBlk
, &pElem
->tdesc
, ref_lookup
);
2979 static sltg_ref_lookup_t
*SLTG_DoRefs(SLTG_RefInfo
*pRef
, ITypeLibImpl
*pTL
,
2984 TLBRefType
*ref_type
;
2985 sltg_ref_lookup_t
*table
;
2986 HREFTYPE typelib_ref
;
2988 if(pRef
->magic
!= SLTG_REF_MAGIC
) {
2989 FIXME("Ref magic = %x\n", pRef
->magic
);
2992 name
= ( (char*)pRef
->names
+ pRef
->number
);
2994 table
= HeapAlloc(GetProcessHeap(), 0, sizeof(*table
) + ((pRef
->number
>> 3) - 1) * sizeof(table
->refs
[0]));
2995 table
->num
= pRef
->number
>> 3;
2997 /* FIXME should scan the existing list and reuse matching refs added by previous typeinfos */
2999 /* We don't want the first href to be 0 */
3000 typelib_ref
= (list_count(&pTL
->ref_list
) + 1) << 2;
3002 for(ref
= 0; ref
< pRef
->number
>> 3; ref
++) {
3004 unsigned int lib_offs
, type_num
;
3006 ref_type
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*ref_type
));
3008 name
+= SLTG_ReadStringA(name
, &refname
);
3009 if(sscanf(refname
, "*\\R%x*#%x", &lib_offs
, &type_num
) != 2)
3010 FIXME_(typelib
)("Can't sscanf ref\n");
3011 if(lib_offs
!= 0xffff) {
3012 TLBImpLib
**import
= &pTL
->pImpLibs
;
3015 if((*import
)->offset
== lib_offs
)
3017 import
= &(*import
)->next
;
3020 char fname
[MAX_PATH
+1];
3023 *import
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3025 (*import
)->offset
= lib_offs
;
3026 TLB_GUIDFromString( pNameTable
+ lib_offs
+ 4,
3028 if(sscanf(pNameTable
+ lib_offs
+ 40, "}#%hd.%hd#%x#%s",
3029 &(*import
)->wVersionMajor
,
3030 &(*import
)->wVersionMinor
,
3031 &(*import
)->lcid
, fname
) != 4) {
3032 FIXME_(typelib
)("can't sscanf ref %s\n",
3033 pNameTable
+ lib_offs
+ 40);
3035 len
= strlen(fname
);
3036 if(fname
[len
-1] != '#')
3037 FIXME("fname = %s\n", fname
);
3038 fname
[len
-1] = '\0';
3039 (*import
)->name
= TLB_MultiByteToBSTR(fname
);
3041 ref_type
->pImpTLInfo
= *import
;
3043 /* Store a reference to IDispatch */
3044 if(pTL
->dispatch_href
== -1 && IsEqualGUID(&(*import
)->guid
, &IID_StdOle
) && type_num
== 4)
3045 pTL
->dispatch_href
= typelib_ref
;
3047 } else { /* internal ref */
3048 ref_type
->pImpTLInfo
= TLB_REF_INTERNAL
;
3050 ref_type
->reference
= typelib_ref
;
3051 ref_type
->index
= type_num
;
3053 HeapFree(GetProcessHeap(), 0, refname
);
3054 list_add_tail(&pTL
->ref_list
, &ref_type
->entry
);
3056 table
->refs
[ref
] = typelib_ref
;
3059 if((BYTE
)*name
!= SLTG_REF_MAGIC
)
3060 FIXME_(typelib
)("End of ref block magic = %x\n", *name
);
3061 dump_TLBRefType(pTL
);
3065 static char *SLTG_DoImpls(char *pBlk
, ITypeInfoImpl
*pTI
,
3066 BOOL OneOnly
, const sltg_ref_lookup_t
*ref_lookup
)
3068 SLTG_ImplInfo
*info
;
3069 TLBImplType
**ppImplType
= &pTI
->impltypelist
;
3070 /* I don't really get this structure, usually it's 0x16 bytes
3071 long, but iuser.tlb contains some that are 0x18 bytes long.
3072 That's ok because we can use the next ptr to jump to the next
3073 one. But how do we know the length of the last one? The WORD
3074 at offs 0x8 might be the clue. For now I'm just assuming that
3075 the last one is the regular 0x16 bytes. */
3077 info
= (SLTG_ImplInfo
*)pBlk
;
3079 *ppImplType
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3080 sizeof(**ppImplType
));
3081 sltg_get_typelib_ref(ref_lookup
, info
->ref
, &(*ppImplType
)->hRef
);
3082 (*ppImplType
)->implflags
= info
->impltypeflags
;
3083 pTI
->TypeAttr
.cImplTypes
++;
3084 ppImplType
= &(*ppImplType
)->next
;
3086 if(info
->next
== 0xffff)
3089 FIXME_(typelib
)("Interface inheriting more than one interface\n");
3090 info
= (SLTG_ImplInfo
*)(pBlk
+ info
->next
);
3092 info
++; /* see comment at top of function */
3096 static void SLTG_DoVars(char *pBlk
, char *pFirstItem
, ITypeInfoImpl
*pTI
, unsigned short cVars
,
3097 const char *pNameTable
, const sltg_ref_lookup_t
*ref_lookup
)
3099 TLBVarDesc
**ppVarDesc
= &pTI
->varlist
;
3100 BSTR bstrPrevName
= NULL
;
3101 SLTG_Variable
*pItem
;
3105 for(pItem
= (SLTG_Variable
*)pFirstItem
, i
= 0; i
< cVars
;
3106 pItem
= (SLTG_Variable
*)(pBlk
+ pItem
->next
), i
++) {
3108 *ppVarDesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3109 sizeof(**ppVarDesc
));
3110 (*ppVarDesc
)->vardesc
.memid
= pItem
->memid
;
3112 if (pItem
->magic
!= SLTG_VAR_MAGIC
&&
3113 pItem
->magic
!= SLTG_VAR_WITH_FLAGS_MAGIC
) {
3114 FIXME_(typelib
)("var magic = %02x\n", pItem
->magic
);
3118 if (pItem
->name
== 0xfffe)
3119 (*ppVarDesc
)->Name
= SysAllocString(bstrPrevName
);
3121 (*ppVarDesc
)->Name
= TLB_MultiByteToBSTR(pItem
->name
+ pNameTable
);
3123 TRACE_(typelib
)("name: %s\n", debugstr_w((*ppVarDesc
)->Name
));
3124 TRACE_(typelib
)("byte_offs = 0x%x\n", pItem
->byte_offs
);
3125 TRACE_(typelib
)("memid = 0x%x\n", pItem
->memid
);
3127 if(pItem
->flags
& 0x02)
3128 pType
= &pItem
->type
;
3130 pType
= (WORD
*)(pBlk
+ pItem
->type
);
3132 if (pItem
->flags
& ~0xda)
3133 FIXME_(typelib
)("unhandled flags = %02x\n", pItem
->flags
& ~0xda);
3135 SLTG_DoElem(pType
, pBlk
,
3136 &(*ppVarDesc
)->vardesc
.elemdescVar
, ref_lookup
);
3138 if (TRACE_ON(typelib
)) {
3140 dump_TypeDesc(&(*ppVarDesc
)->vardesc
.elemdescVar
.tdesc
, buf
);
3141 TRACE_(typelib
)("elemdescVar: %s\n", buf
);
3144 if (pItem
->flags
& 0x40) {
3145 TRACE_(typelib
)("VAR_DISPATCH\n");
3146 (*ppVarDesc
)->vardesc
.varkind
= VAR_DISPATCH
;
3148 else if (pItem
->flags
& 0x10) {
3149 TRACE_(typelib
)("VAR_CONST\n");
3150 (*ppVarDesc
)->vardesc
.varkind
= VAR_CONST
;
3151 (*ppVarDesc
)->vardesc
.u
.lpvarValue
= HeapAlloc(GetProcessHeap(), 0,
3153 V_VT((*ppVarDesc
)->vardesc
.u
.lpvarValue
) = VT_INT
;
3154 if (pItem
->flags
& 0x08)
3155 V_UNION((*ppVarDesc
)->vardesc
.u
.lpvarValue
, intVal
) = pItem
->byte_offs
;
3157 switch ((*ppVarDesc
)->vardesc
.elemdescVar
.tdesc
.vt
)
3163 WORD len
= *(WORD
*)(pBlk
+ pItem
->byte_offs
);
3165 TRACE_(typelib
)("len = %u\n", len
);
3166 if (len
== 0xffff) {
3169 INT alloc_len
= MultiByteToWideChar(CP_ACP
, 0, pBlk
+ pItem
->byte_offs
+ 2, len
, NULL
, 0);
3170 str
= SysAllocStringLen(NULL
, alloc_len
);
3171 MultiByteToWideChar(CP_ACP
, 0, pBlk
+ pItem
->byte_offs
+ 2, len
, str
, alloc_len
);
3173 V_VT((*ppVarDesc
)->vardesc
.u
.lpvarValue
) = VT_BSTR
;
3174 V_BSTR((*ppVarDesc
)->vardesc
.u
.lpvarValue
) = str
;
3181 V_UNION((*ppVarDesc
)->vardesc
.u
.lpvarValue
, intVal
) =
3182 *(INT
*)(pBlk
+ pItem
->byte_offs
);
3185 FIXME_(typelib
)("VAR_CONST unimplemented for type %d\n", (*ppVarDesc
)->vardesc
.elemdescVar
.tdesc
.vt
);
3190 TRACE_(typelib
)("VAR_PERINSTANCE\n");
3191 (*ppVarDesc
)->vardesc
.u
.oInst
= pItem
->byte_offs
;
3192 (*ppVarDesc
)->vardesc
.varkind
= VAR_PERINSTANCE
;
3195 if (pItem
->magic
== SLTG_VAR_WITH_FLAGS_MAGIC
)
3196 (*ppVarDesc
)->vardesc
.wVarFlags
= pItem
->varflags
;
3198 if (pItem
->flags
& 0x80)
3199 (*ppVarDesc
)->vardesc
.wVarFlags
|= VARFLAG_FREADONLY
;
3201 bstrPrevName
= (*ppVarDesc
)->Name
;
3202 ppVarDesc
= &((*ppVarDesc
)->next
);
3204 pTI
->TypeAttr
.cVars
= cVars
;
3207 static void SLTG_DoFuncs(char *pBlk
, char *pFirstItem
, ITypeInfoImpl
*pTI
,
3208 unsigned short cFuncs
, char *pNameTable
, const sltg_ref_lookup_t
*ref_lookup
)
3210 SLTG_Function
*pFunc
;
3212 TLBFuncDesc
**ppFuncDesc
= &pTI
->funclist
;
3214 for(pFunc
= (SLTG_Function
*)pFirstItem
, i
= 0; i
< cFuncs
;
3215 pFunc
= (SLTG_Function
*)(pBlk
+ pFunc
->next
), i
++) {
3220 *ppFuncDesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3221 sizeof(**ppFuncDesc
));
3223 switch (pFunc
->magic
& ~SLTG_FUNCTION_FLAGS_PRESENT
) {
3224 case SLTG_FUNCTION_MAGIC
:
3225 (*ppFuncDesc
)->funcdesc
.funckind
= FUNC_PUREVIRTUAL
;
3227 case SLTG_DISPATCH_FUNCTION_MAGIC
:
3228 (*ppFuncDesc
)->funcdesc
.funckind
= FUNC_DISPATCH
;
3230 case SLTG_STATIC_FUNCTION_MAGIC
:
3231 (*ppFuncDesc
)->funcdesc
.funckind
= FUNC_STATIC
;
3234 FIXME("unimplemented func magic = %02x\n", pFunc
->magic
& ~SLTG_FUNCTION_FLAGS_PRESENT
);
3235 HeapFree(GetProcessHeap(), 0, *ppFuncDesc
);
3239 (*ppFuncDesc
)->Name
= TLB_MultiByteToBSTR(pFunc
->name
+ pNameTable
);
3241 (*ppFuncDesc
)->funcdesc
.memid
= pFunc
->dispid
;
3242 (*ppFuncDesc
)->funcdesc
.invkind
= pFunc
->inv
>> 4;
3243 (*ppFuncDesc
)->funcdesc
.callconv
= pFunc
->nacc
& 0x7;
3244 (*ppFuncDesc
)->funcdesc
.cParams
= pFunc
->nacc
>> 3;
3245 (*ppFuncDesc
)->funcdesc
.cParamsOpt
= (pFunc
->retnextopt
& 0x7e) >> 1;
3246 (*ppFuncDesc
)->funcdesc
.oVft
= pFunc
->vtblpos
;
3248 if(pFunc
->magic
& SLTG_FUNCTION_FLAGS_PRESENT
)
3249 (*ppFuncDesc
)->funcdesc
.wFuncFlags
= pFunc
->funcflags
;
3251 if(pFunc
->retnextopt
& 0x80)
3252 pType
= &pFunc
->rettype
;
3254 pType
= (WORD
*)(pBlk
+ pFunc
->rettype
);
3256 SLTG_DoElem(pType
, pBlk
, &(*ppFuncDesc
)->funcdesc
.elemdescFunc
, ref_lookup
);
3258 (*ppFuncDesc
)->funcdesc
.lprgelemdescParam
=
3259 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3260 (*ppFuncDesc
)->funcdesc
.cParams
* sizeof(ELEMDESC
));
3261 (*ppFuncDesc
)->pParamDesc
=
3262 HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3263 (*ppFuncDesc
)->funcdesc
.cParams
* sizeof(TLBParDesc
));
3265 pArg
= (WORD
*)(pBlk
+ pFunc
->arg_off
);
3267 for(param
= 0; param
< (*ppFuncDesc
)->funcdesc
.cParams
; param
++) {
3268 char *paramName
= pNameTable
+ *pArg
;
3270 /* If arg type follows then paramName points to the 2nd
3271 letter of the name, else the next WORD is an offset to
3272 the arg type and paramName points to the first letter.
3273 So let's take one char off paramName and see if we're
3274 pointing at an alpha-numeric char. However if *pArg is
3275 0xffff or 0xfffe then the param has no name, the former
3276 meaning that the next WORD is the type, the latter
3277 meaning that the next WORD is an offset to the type. */
3282 else if(*pArg
== 0xfffe) {
3286 else if(paramName
[-1] && !isalnum(paramName
[-1]))
3291 if(HaveOffs
) { /* the next word is an offset to type */
3292 pType
= (WORD
*)(pBlk
+ *pArg
);
3293 SLTG_DoElem(pType
, pBlk
,
3294 &(*ppFuncDesc
)->funcdesc
.lprgelemdescParam
[param
], ref_lookup
);
3299 pArg
= SLTG_DoElem(pArg
, pBlk
,
3300 &(*ppFuncDesc
)->funcdesc
.lprgelemdescParam
[param
], ref_lookup
);
3303 /* Are we an optional param ? */
3304 if((*ppFuncDesc
)->funcdesc
.cParams
- param
<=
3305 (*ppFuncDesc
)->funcdesc
.cParamsOpt
)
3306 (*ppFuncDesc
)->funcdesc
.lprgelemdescParam
[param
].u
.paramdesc
.wParamFlags
|= PARAMFLAG_FOPT
;
3309 (*ppFuncDesc
)->pParamDesc
[param
].Name
=
3310 TLB_MultiByteToBSTR(paramName
);
3312 (*ppFuncDesc
)->pParamDesc
[param
].Name
=
3313 SysAllocString((*ppFuncDesc
)->Name
);
3317 ppFuncDesc
= &((*ppFuncDesc
)->next
);
3318 if(pFunc
->next
== 0xffff) break;
3320 pTI
->TypeAttr
.cFuncs
= cFuncs
;
3323 static void SLTG_ProcessCoClass(char *pBlk
, ITypeInfoImpl
*pTI
,
3324 char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3325 SLTG_TypeInfoTail
*pTITail
)
3328 sltg_ref_lookup_t
*ref_lookup
= NULL
;
3330 if(pTIHeader
->href_table
!= 0xffffffff) {
3331 ref_lookup
= SLTG_DoRefs((SLTG_RefInfo
*)((char *)pTIHeader
+ pTIHeader
->href_table
), pTI
->pTypeLib
,
3337 if(*(WORD
*)pFirstItem
== SLTG_IMPL_MAGIC
) {
3338 SLTG_DoImpls(pFirstItem
, pTI
, FALSE
, ref_lookup
);
3340 HeapFree(GetProcessHeap(), 0, ref_lookup
);
3344 static void SLTG_ProcessInterface(char *pBlk
, ITypeInfoImpl
*pTI
,
3345 char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3346 const SLTG_TypeInfoTail
*pTITail
)
3349 sltg_ref_lookup_t
*ref_lookup
= NULL
;
3351 if(pTIHeader
->href_table
!= 0xffffffff) {
3352 ref_lookup
= SLTG_DoRefs((SLTG_RefInfo
*)((char *)pTIHeader
+ pTIHeader
->href_table
), pTI
->pTypeLib
,
3358 if(*(WORD
*)pFirstItem
== SLTG_IMPL_MAGIC
) {
3359 SLTG_DoImpls(pFirstItem
, pTI
, TRUE
, ref_lookup
);
3362 if (pTITail
->funcs_off
!= 0xffff)
3363 SLTG_DoFuncs(pBlk
, pBlk
+ pTITail
->funcs_off
, pTI
, pTITail
->cFuncs
, pNameTable
, ref_lookup
);
3365 HeapFree(GetProcessHeap(), 0, ref_lookup
);
3367 if (TRACE_ON(typelib
))
3368 dump_TLBFuncDesc(pTI
->funclist
);
3371 static void SLTG_ProcessRecord(char *pBlk
, ITypeInfoImpl
*pTI
,
3372 const char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3373 const SLTG_TypeInfoTail
*pTITail
)
3375 SLTG_DoVars(pBlk
, pBlk
+ pTITail
->vars_off
, pTI
, pTITail
->cVars
, pNameTable
, NULL
);
3378 static void SLTG_ProcessAlias(char *pBlk
, ITypeInfoImpl
*pTI
,
3379 char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3380 const SLTG_TypeInfoTail
*pTITail
)
3383 sltg_ref_lookup_t
*ref_lookup
= NULL
;
3385 if (pTITail
->simple_alias
) {
3386 /* if simple alias, no more processing required */
3387 pTI
->TypeAttr
.tdescAlias
.vt
= pTITail
->tdescalias_vt
;
3391 if(pTIHeader
->href_table
!= 0xffffffff) {
3392 ref_lookup
= SLTG_DoRefs((SLTG_RefInfo
*)((char *)pTIHeader
+ pTIHeader
->href_table
), pTI
->pTypeLib
,
3396 /* otherwise it is an offset to a type */
3397 pType
= (WORD
*)(pBlk
+ pTITail
->tdescalias_vt
);
3399 SLTG_DoType(pType
, pBlk
, &pTI
->TypeAttr
.tdescAlias
, ref_lookup
);
3401 HeapFree(GetProcessHeap(), 0, ref_lookup
);
3404 static void SLTG_ProcessDispatch(char *pBlk
, ITypeInfoImpl
*pTI
,
3405 char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3406 const SLTG_TypeInfoTail
*pTITail
)
3408 sltg_ref_lookup_t
*ref_lookup
= NULL
;
3409 if (pTIHeader
->href_table
!= 0xffffffff)
3410 ref_lookup
= SLTG_DoRefs((SLTG_RefInfo
*)((char *)pTIHeader
+ pTIHeader
->href_table
), pTI
->pTypeLib
,
3413 if (pTITail
->vars_off
!= 0xffff)
3414 SLTG_DoVars(pBlk
, pBlk
+ pTITail
->vars_off
, pTI
, pTITail
->cVars
, pNameTable
, ref_lookup
);
3416 if (pTITail
->funcs_off
!= 0xffff)
3417 SLTG_DoFuncs(pBlk
, pBlk
+ pTITail
->funcs_off
, pTI
, pTITail
->cFuncs
, pNameTable
, ref_lookup
);
3419 /* this is necessary to cope with MSFT typelibs that set cFuncs to the number
3420 * of dispinterface functions including the IDispatch ones, so
3421 * ITypeInfo::GetFuncDesc takes the real value for cFuncs from cbSizeVft */
3422 pTI
->TypeAttr
.cbSizeVft
= pTI
->TypeAttr
.cFuncs
* sizeof(void *);
3424 HeapFree(GetProcessHeap(), 0, ref_lookup
);
3425 if (TRACE_ON(typelib
))
3426 dump_TLBFuncDesc(pTI
->funclist
);
3429 static void SLTG_ProcessEnum(char *pBlk
, ITypeInfoImpl
*pTI
,
3430 const char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3431 const SLTG_TypeInfoTail
*pTITail
)
3433 SLTG_DoVars(pBlk
, pBlk
+ pTITail
->vars_off
, pTI
, pTITail
->cVars
, pNameTable
, NULL
);
3436 static void SLTG_ProcessModule(char *pBlk
, ITypeInfoImpl
*pTI
,
3437 char *pNameTable
, SLTG_TypeInfoHeader
*pTIHeader
,
3438 const SLTG_TypeInfoTail
*pTITail
)
3440 sltg_ref_lookup_t
*ref_lookup
= NULL
;
3441 if (pTIHeader
->href_table
!= 0xffffffff)
3442 ref_lookup
= SLTG_DoRefs((SLTG_RefInfo
*)((char *)pTIHeader
+ pTIHeader
->href_table
), pTI
->pTypeLib
,
3445 if (pTITail
->vars_off
!= 0xffff)
3446 SLTG_DoVars(pBlk
, pBlk
+ pTITail
->vars_off
, pTI
, pTITail
->cVars
, pNameTable
, ref_lookup
);
3448 if (pTITail
->funcs_off
!= 0xffff)
3449 SLTG_DoFuncs(pBlk
, pBlk
+ pTITail
->funcs_off
, pTI
, pTITail
->cFuncs
, pNameTable
, ref_lookup
);
3450 HeapFree(GetProcessHeap(), 0, ref_lookup
);
3451 if (TRACE_ON(typelib
))
3455 /* Because SLTG_OtherTypeInfo is such a painful struct, we make a more
3456 managable copy of it into this */
3469 } SLTG_InternalOtherTypeInfo
;
3471 /****************************************************************************
3472 * ITypeLib2_Constructor_SLTG
3474 * loading a SLTG typelib from an in-memory image
3476 static ITypeLib2
* ITypeLib2_Constructor_SLTG(LPVOID pLib
, DWORD dwTLBLength
)
3478 ITypeLibImpl
*pTypeLibImpl
;
3479 SLTG_Header
*pHeader
;
3480 SLTG_BlkEntry
*pBlkEntry
;
3484 LPVOID pBlk
, pFirstBlk
;
3485 SLTG_LibBlk
*pLibBlk
;
3486 SLTG_InternalOtherTypeInfo
*pOtherTypeInfoBlks
;
3487 char *pAfterOTIBlks
= NULL
;
3488 char *pNameTable
, *ptr
;
3491 ITypeInfoImpl
**ppTypeInfoImpl
;
3493 TRACE_(typelib
)("%p, TLB length = %d\n", pLib
, dwTLBLength
);
3496 pTypeLibImpl
= TypeLibImpl_Constructor();
3497 if (!pTypeLibImpl
) return NULL
;
3501 TRACE_(typelib
)("header:\n");
3502 TRACE_(typelib
)("\tmagic=0x%08x, file blocks = %d\n", pHeader
->SLTG_magic
,
3503 pHeader
->nrOfFileBlks
);
3504 if (pHeader
->SLTG_magic
!= SLTG_SIGNATURE
) {
3505 FIXME_(typelib
)("Header type magic 0x%08x not supported.\n",
3506 pHeader
->SLTG_magic
);
3510 /* There are pHeader->nrOfFileBlks - 2 TypeInfo records in this typelib */
3511 pTypeLibImpl
->TypeInfoCount
= pHeader
->nrOfFileBlks
- 2;
3513 /* This points to pHeader->nrOfFileBlks - 1 of SLTG_BlkEntry */
3514 pBlkEntry
= (SLTG_BlkEntry
*)(pHeader
+ 1);
3516 /* Next we have a magic block */
3517 pMagic
= (SLTG_Magic
*)(pBlkEntry
+ pHeader
->nrOfFileBlks
- 1);
3519 /* Let's see if we're still in sync */
3520 if(memcmp(pMagic
->CompObj_magic
, SLTG_COMPOBJ_MAGIC
,
3521 sizeof(SLTG_COMPOBJ_MAGIC
))) {
3522 FIXME_(typelib
)("CompObj magic = %s\n", pMagic
->CompObj_magic
);
3525 if(memcmp(pMagic
->dir_magic
, SLTG_DIR_MAGIC
,
3526 sizeof(SLTG_DIR_MAGIC
))) {
3527 FIXME_(typelib
)("dir magic = %s\n", pMagic
->dir_magic
);
3531 pIndex
= (SLTG_Index
*)(pMagic
+1);
3533 pPad9
= (SLTG_Pad9
*)(pIndex
+ pTypeLibImpl
->TypeInfoCount
);
3535 pFirstBlk
= (LPVOID
)(pPad9
+ 1);
3537 /* We'll set up a ptr to the main library block, which is the last one. */
3539 for(pBlk
= pFirstBlk
, order
= pHeader
->first_blk
- 1, i
= 0;
3540 pBlkEntry
[order
].next
!= 0;
3541 order
= pBlkEntry
[order
].next
- 1, i
++) {
3542 pBlk
= (char*)pBlk
+ pBlkEntry
[order
].len
;
3546 len
= SLTG_ReadLibBlk(pLibBlk
, pTypeLibImpl
);
3548 /* Now there's 0x40 bytes of 0xffff with the numbers 0 to TypeInfoCount
3553 /* And now TypeInfoCount of SLTG_OtherTypeInfo */
3555 pOtherTypeInfoBlks
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
3556 sizeof(*pOtherTypeInfoBlks
) *
3557 pTypeLibImpl
->TypeInfoCount
);
3560 ptr
= (char*)pLibBlk
+ len
;
3562 for(i
= 0; i
< pTypeLibImpl
->TypeInfoCount
; i
++) {
3566 pOtherTypeInfoBlks
[i
].small_no
= *(WORD
*)ptr
;
3568 w
= *(WORD
*)(ptr
+ 2);
3571 pOtherTypeInfoBlks
[i
].index_name
= HeapAlloc(GetProcessHeap(),0,
3573 memcpy(pOtherTypeInfoBlks
[i
].index_name
, ptr
+ 4, w
);
3574 pOtherTypeInfoBlks
[i
].index_name
[w
] = '\0';
3576 w
= *(WORD
*)(ptr
+ 4 + len
);
3578 TRACE_(typelib
)("\twith %s\n", debugstr_an(ptr
+ 6 + len
, w
));
3580 pOtherTypeInfoBlks
[i
].other_name
= HeapAlloc(GetProcessHeap(),0,
3582 memcpy(pOtherTypeInfoBlks
[i
].other_name
, ptr
+ 6 + len
, w
);
3583 pOtherTypeInfoBlks
[i
].other_name
[w
] = '\0';
3585 pOtherTypeInfoBlks
[i
].res1a
= *(WORD
*)(ptr
+ len
+ 6);
3586 pOtherTypeInfoBlks
[i
].name_offs
= *(WORD
*)(ptr
+ len
+ 8);
3587 extra
= pOtherTypeInfoBlks
[i
].more_bytes
= *(WORD
*)(ptr
+ 10 + len
);
3589 pOtherTypeInfoBlks
[i
].extra
= HeapAlloc(GetProcessHeap(),0,
3591 memcpy(pOtherTypeInfoBlks
[i
].extra
, ptr
+ 12, extra
);
3594 pOtherTypeInfoBlks
[i
].res20
= *(WORD
*)(ptr
+ 12 + len
);
3595 pOtherTypeInfoBlks
[i
].helpcontext
= *(DWORD
*)(ptr
+ 14 + len
);
3596 pOtherTypeInfoBlks
[i
].res26
= *(WORD
*)(ptr
+ 18 + len
);
3597 memcpy(&pOtherTypeInfoBlks
[i
].uuid
, ptr
+ 20 + len
, sizeof(GUID
));
3598 len
+= sizeof(SLTG_OtherTypeInfo
);
3602 pAfterOTIBlks
= ptr
;
3604 /* Skip this WORD and get the next DWORD */
3605 len
= *(DWORD
*)(pAfterOTIBlks
+ 2);
3607 /* Now add this to pLibBLk look at what we're pointing at and
3608 possibly add 0x20, then add 0x216, sprinkle a bit a magic
3609 dust and we should be pointing at the beginning of the name
3612 pNameTable
= (char*)pLibBlk
+ len
;
3614 switch(*(WORD
*)pNameTable
) {
3621 FIXME_(typelib
)("pNameTable jump = %x\n", *(WORD
*)pNameTable
);
3625 pNameTable
+= 0x216;
3629 TRACE_(typelib
)("Library name is %s\n", pNameTable
+ pLibBlk
->name
);
3631 pTypeLibImpl
->Name
= TLB_MultiByteToBSTR(pNameTable
+ pLibBlk
->name
);
3634 /* Hopefully we now have enough ptrs set up to actually read in
3635 some TypeInfos. It's not clear which order to do them in, so
3636 I'll just follow the links along the BlkEntry chain and read
3637 them in the order in which they are in the file */
3639 ppTypeInfoImpl
= &(pTypeLibImpl
->pTypeInfo
);
3641 for(pBlk
= pFirstBlk
, order
= pHeader
->first_blk
- 1, i
= 0;
3642 pBlkEntry
[order
].next
!= 0;
3643 order
= pBlkEntry
[order
].next
- 1, i
++) {
3645 SLTG_TypeInfoHeader
*pTIHeader
;
3646 SLTG_TypeInfoTail
*pTITail
;
3647 SLTG_MemberHeader
*pMemHeader
;
3649 if(strcmp(pBlkEntry
[order
].index_string
+ (char*)pMagic
,
3650 pOtherTypeInfoBlks
[i
].index_name
)) {
3651 FIXME_(typelib
)("Index strings don't match\n");
3656 if(pTIHeader
->magic
!= SLTG_TIHEADER_MAGIC
) {
3657 FIXME_(typelib
)("TypeInfoHeader magic = %04x\n", pTIHeader
->magic
);
3660 TRACE_(typelib
)("pTIHeader->res06 = %x, pTIHeader->res0e = %x, "
3661 "pTIHeader->res16 = %x, pTIHeader->res1e = %x\n",
3662 pTIHeader
->res06
, pTIHeader
->res0e
, pTIHeader
->res16
, pTIHeader
->res1e
);
3664 *ppTypeInfoImpl
= (ITypeInfoImpl
*)ITypeInfo_Constructor();
3665 (*ppTypeInfoImpl
)->pTypeLib
= pTypeLibImpl
;
3666 (*ppTypeInfoImpl
)->index
= i
;
3667 (*ppTypeInfoImpl
)->Name
= TLB_MultiByteToBSTR(
3668 pOtherTypeInfoBlks
[i
].name_offs
+
3670 (*ppTypeInfoImpl
)->dwHelpContext
= pOtherTypeInfoBlks
[i
].helpcontext
;
3671 (*ppTypeInfoImpl
)->TypeAttr
.guid
= pOtherTypeInfoBlks
[i
].uuid
;
3672 (*ppTypeInfoImpl
)->TypeAttr
.typekind
= pTIHeader
->typekind
;
3673 (*ppTypeInfoImpl
)->TypeAttr
.wMajorVerNum
= pTIHeader
->major_version
;
3674 (*ppTypeInfoImpl
)->TypeAttr
.wMinorVerNum
= pTIHeader
->minor_version
;
3675 (*ppTypeInfoImpl
)->TypeAttr
.wTypeFlags
=
3676 (pTIHeader
->typeflags1
>> 3) | (pTIHeader
->typeflags2
<< 5);
3678 if((pTIHeader
->typeflags1
& 7) != 2)
3679 FIXME_(typelib
)("typeflags1 = %02x\n", pTIHeader
->typeflags1
);
3680 if(pTIHeader
->typeflags3
!= 2)
3681 FIXME_(typelib
)("typeflags3 = %02x\n", pTIHeader
->typeflags3
);
3683 TRACE_(typelib
)("TypeInfo %s of kind %s guid %s typeflags %04x\n",
3684 debugstr_w((*ppTypeInfoImpl
)->Name
),
3685 typekind_desc
[pTIHeader
->typekind
],
3686 debugstr_guid(&(*ppTypeInfoImpl
)->TypeAttr
.guid
),
3687 (*ppTypeInfoImpl
)->TypeAttr
.wTypeFlags
);
3689 pMemHeader
= (SLTG_MemberHeader
*)((char *)pBlk
+ pTIHeader
->elem_table
);
3691 pTITail
= (SLTG_TypeInfoTail
*)((char *)(pMemHeader
+ 1) + pMemHeader
->cbExtra
);
3693 (*ppTypeInfoImpl
)->TypeAttr
.cbAlignment
= pTITail
->cbAlignment
;
3694 (*ppTypeInfoImpl
)->TypeAttr
.cbSizeInstance
= pTITail
->cbSizeInstance
;
3695 (*ppTypeInfoImpl
)->TypeAttr
.cbSizeVft
= pTITail
->cbSizeVft
;
3697 switch(pTIHeader
->typekind
) {
3699 SLTG_ProcessEnum((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3700 pTIHeader
, pTITail
);
3704 SLTG_ProcessRecord((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3705 pTIHeader
, pTITail
);
3708 case TKIND_INTERFACE
:
3709 SLTG_ProcessInterface((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3710 pTIHeader
, pTITail
);
3714 SLTG_ProcessCoClass((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3715 pTIHeader
, pTITail
);
3719 SLTG_ProcessAlias((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3720 pTIHeader
, pTITail
);
3723 case TKIND_DISPATCH
:
3724 SLTG_ProcessDispatch((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3725 pTIHeader
, pTITail
);
3729 SLTG_ProcessModule((char *)(pMemHeader
+ 1), *ppTypeInfoImpl
, pNameTable
,
3730 pTIHeader
, pTITail
);
3734 FIXME("Not processing typekind %d\n", pTIHeader
->typekind
);
3739 if(pTITail
) { /* could get cFuncs, cVars and cImplTypes from here
3740 but we've already set those */
3741 #define X(x) TRACE_(typelib)("tt "#x": %x\n",pTITail->res##x);
3756 ppTypeInfoImpl
= &((*ppTypeInfoImpl
)->next
);
3757 pBlk
= (char*)pBlk
+ pBlkEntry
[order
].len
;
3760 if(i
!= pTypeLibImpl
->TypeInfoCount
) {
3761 FIXME("Somehow processed %d TypeInfos\n", i
);
3765 HeapFree(GetProcessHeap(), 0, pOtherTypeInfoBlks
);
3766 return (ITypeLib2
*)pTypeLibImpl
;
3769 /* ITypeLib::QueryInterface
3771 static HRESULT WINAPI
ITypeLib2_fnQueryInterface(
3776 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3778 TRACE("(%p)->(IID: %s)\n",This
,debugstr_guid(riid
));
3781 if(IsEqualIID(riid
, &IID_IUnknown
) ||
3782 IsEqualIID(riid
,&IID_ITypeLib
)||
3783 IsEqualIID(riid
,&IID_ITypeLib2
))
3790 ITypeLib2_AddRef(iface
);
3791 TRACE("-- Interface: (%p)->(%p)\n",ppvObject
,*ppvObject
);
3794 TRACE("-- Interface: E_NOINTERFACE\n");
3795 return E_NOINTERFACE
;
3800 static ULONG WINAPI
ITypeLib2_fnAddRef( ITypeLib2
*iface
)
3802 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3803 ULONG ref
= InterlockedIncrement(&This
->ref
);
3805 TRACE("(%p)->ref was %u\n",This
, ref
- 1);
3810 /* ITypeLib::Release
3812 static ULONG WINAPI
ITypeLib2_fnRelease( ITypeLib2
*iface
)
3814 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3815 ULONG ref
= InterlockedDecrement(&This
->ref
);
3817 TRACE("(%p)->(%u)\n",This
, ref
);
3821 TLBImpLib
*pImpLib
, *pImpLibNext
;
3822 TLBCustData
*pCustData
, *pCustDataNext
;
3823 TLBRefType
*ref_type
;
3827 /* remove cache entry */
3830 TRACE("removing from cache list\n");
3831 EnterCriticalSection(&cache_section
);
3832 if (This
->next
) This
->next
->prev
= This
->prev
;
3833 if (This
->prev
) This
->prev
->next
= This
->next
;
3834 else tlb_cache_first
= This
->next
;
3835 LeaveCriticalSection(&cache_section
);
3836 HeapFree(GetProcessHeap(), 0, This
->path
);
3838 TRACE(" destroying ITypeLib(%p)\n",This
);
3842 SysFreeString(This
->Name
);
3846 if (This
->DocString
)
3848 SysFreeString(This
->DocString
);
3849 This
->DocString
= NULL
;
3854 SysFreeString(This
->HelpFile
);
3855 This
->HelpFile
= NULL
;
3858 if (This
->HelpStringDll
)
3860 SysFreeString(This
->HelpStringDll
);
3861 This
->HelpStringDll
= NULL
;
3864 for (pCustData
= This
->pCustData
; pCustData
; pCustData
= pCustDataNext
)
3866 VariantClear(&pCustData
->data
);
3868 pCustDataNext
= pCustData
->next
;
3869 TLB_Free(pCustData
);
3872 for (i
= 0; i
< This
->ctTypeDesc
; i
++)
3873 if (This
->pTypeDesc
[i
].vt
== VT_CARRAY
)
3874 TLB_Free(This
->pTypeDesc
[i
].u
.lpadesc
);
3876 TLB_Free(This
->pTypeDesc
);
3878 for (pImpLib
= This
->pImpLibs
; pImpLib
; pImpLib
= pImpLibNext
)
3880 if (pImpLib
->pImpTypeLib
)
3881 ITypeLib_Release((ITypeLib
*)pImpLib
->pImpTypeLib
);
3882 TLB_Free(pImpLib
->name
);
3884 pImpLibNext
= pImpLib
->next
;
3888 LIST_FOR_EACH_ENTRY_SAFE(ref_type
, cursor2
, &This
->ref_list
, TLBRefType
, entry
)
3890 list_remove(&ref_type
->entry
);
3894 if (This
->pTypeInfo
) /* can be NULL */
3895 ITypeInfo_Release((ITypeInfo
*) This
->pTypeInfo
);
3896 HeapFree(GetProcessHeap(),0,This
);
3903 /* ITypeLib::GetTypeInfoCount
3905 * Returns the number of type descriptions in the type library
3907 static UINT WINAPI
ITypeLib2_fnGetTypeInfoCount( ITypeLib2
*iface
)
3909 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3910 TRACE("(%p)->count is %d\n",This
, This
->TypeInfoCount
);
3911 return This
->TypeInfoCount
;
3914 /* ITypeLib::GetTypeInfo
3916 * retrieves the specified type description in the library.
3918 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfo(
3921 ITypeInfo
**ppTInfo
)
3925 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3926 ITypeInfoImpl
*pTypeInfo
= This
->pTypeInfo
;
3928 TRACE("(%p)->(index=%d)\n", This
, index
);
3930 if (!ppTInfo
) return E_INVALIDARG
;
3932 /* search element n in list */
3933 for(i
=0; i
< index
; i
++)
3935 pTypeInfo
= pTypeInfo
->next
;
3938 TRACE("-- element not found\n");
3939 return TYPE_E_ELEMENTNOTFOUND
;
3943 *ppTInfo
= (ITypeInfo
*) pTypeInfo
;
3945 ITypeInfo_AddRef(*ppTInfo
);
3946 TRACE("-- found (%p)\n",*ppTInfo
);
3951 /* ITypeLibs::GetTypeInfoType
3953 * Retrieves the type of a type description.
3955 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfoType(
3960 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3962 ITypeInfoImpl
*pTInfo
= This
->pTypeInfo
;
3964 if (ITypeLib2_fnGetTypeInfoCount(iface
) < index
+ 1)
3965 return TYPE_E_ELEMENTNOTFOUND
;
3967 TRACE("(%p) index %d\n", This
, index
);
3969 if(!pTKind
) return E_INVALIDARG
;
3971 /* search element n in list */
3972 for(i
=0; i
< index
; i
++)
3976 TRACE("-- element not found\n");
3977 return TYPE_E_ELEMENTNOTFOUND
;
3979 pTInfo
= pTInfo
->next
;
3982 *pTKind
= pTInfo
->TypeAttr
.typekind
;
3983 TRACE("-- found Type (%d)\n", *pTKind
);
3987 /* ITypeLib::GetTypeInfoOfGuid
3989 * Retrieves the type description that corresponds to the specified GUID.
3992 static HRESULT WINAPI
ITypeLib2_fnGetTypeInfoOfGuid(
3995 ITypeInfo
**ppTInfo
)
3997 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
3998 ITypeInfoImpl
*pTypeInfo
= This
->pTypeInfo
; /* head of list */
4000 TRACE("(%p)\n\tguid:\t%s)\n",This
,debugstr_guid(guid
));
4004 WARN("-- element not found\n");
4005 return TYPE_E_ELEMENTNOTFOUND
;
4008 /* search linked list for guid */
4009 while( !IsEqualIID(guid
,&pTypeInfo
->TypeAttr
.guid
) )
4011 pTypeInfo
= pTypeInfo
->next
;
4015 /* end of list reached */
4016 WARN("-- element not found\n");
4017 return TYPE_E_ELEMENTNOTFOUND
;
4021 TRACE("-- found (%p, %s)\n",
4023 debugstr_w(pTypeInfo
->Name
));
4025 *ppTInfo
= (ITypeInfo
*)pTypeInfo
;
4026 ITypeInfo_AddRef(*ppTInfo
);
4030 /* ITypeLib::GetLibAttr
4032 * Retrieves the structure that contains the library's attributes.
4035 static HRESULT WINAPI
ITypeLib2_fnGetLibAttr(
4037 LPTLIBATTR
*ppTLibAttr
)
4039 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4040 TRACE("(%p)\n",This
);
4041 *ppTLibAttr
= HeapAlloc(GetProcessHeap(), 0, sizeof(**ppTLibAttr
));
4042 **ppTLibAttr
= This
->LibAttr
;
4046 /* ITypeLib::GetTypeComp
4048 * Enables a client compiler to bind to a library's types, variables,
4049 * constants, and global functions.
4052 static HRESULT WINAPI
ITypeLib2_fnGetTypeComp(
4054 ITypeComp
**ppTComp
)
4056 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4058 TRACE("(%p)->(%p)\n",This
,ppTComp
);
4059 *ppTComp
= (ITypeComp
*)&This
->lpVtblTypeComp
;
4060 ITypeComp_AddRef(*ppTComp
);
4065 /* ITypeLib::GetDocumentation
4067 * Retrieves the library's documentation string, the complete Help file name
4068 * and path, and the context identifier for the library Help topic in the Help
4071 * On a successful return all non-null BSTR pointers will have been set,
4074 static HRESULT WINAPI
ITypeLib2_fnGetDocumentation(
4078 BSTR
*pBstrDocString
,
4079 DWORD
*pdwHelpContext
,
4080 BSTR
*pBstrHelpFile
)
4082 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4084 HRESULT result
= E_INVALIDARG
;
4089 TRACE("(%p) index %d Name(%p) DocString(%p) HelpContext(%p) HelpFile(%p)\n",
4091 pBstrName
, pBstrDocString
,
4092 pdwHelpContext
, pBstrHelpFile
);
4096 /* documentation for the typelib */
4101 if(!(*pBstrName
= SysAllocString(This
->Name
)))
4109 if (This
->DocString
)
4111 if(!(*pBstrDocString
= SysAllocString(This
->DocString
)))
4114 else if (This
->Name
)
4116 if(!(*pBstrDocString
= SysAllocString(This
->Name
)))
4120 *pBstrDocString
= NULL
;
4124 *pdwHelpContext
= This
->dwHelpContext
;
4130 if(!(*pBstrHelpFile
= SysAllocString(This
->HelpFile
)))
4134 *pBstrHelpFile
= NULL
;
4141 /* for a typeinfo */
4142 result
= ITypeLib2_fnGetTypeInfo(iface
, index
, &pTInfo
);
4144 if(SUCCEEDED(result
))
4146 result
= ITypeInfo_GetDocumentation(pTInfo
,
4150 pdwHelpContext
, pBstrHelpFile
);
4152 ITypeInfo_Release(pTInfo
);
4157 if (pBstrDocString
) SysFreeString (*pBstrDocString
);
4159 if (pBstrName
) SysFreeString (*pBstrName
);
4161 return STG_E_INSUFFICIENTMEMORY
;
4166 * Indicates whether a passed-in string contains the name of a type or member
4167 * described in the library.
4170 static HRESULT WINAPI
ITypeLib2_fnIsName(
4176 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4177 ITypeInfoImpl
*pTInfo
;
4178 TLBFuncDesc
*pFInfo
;
4181 UINT nNameBufLen
= (lstrlenW(szNameBuf
)+1)*sizeof(WCHAR
);
4183 TRACE("(%p)->(%s,%08x,%p)\n", This
, debugstr_w(szNameBuf
), lHashVal
,
4187 for(pTInfo
=This
->pTypeInfo
;pTInfo
;pTInfo
=pTInfo
->next
){
4188 if(!memcmp(szNameBuf
,pTInfo
->Name
, nNameBufLen
)) goto ITypeLib2_fnIsName_exit
;
4189 for(pFInfo
=pTInfo
->funclist
;pFInfo
;pFInfo
=pFInfo
->next
) {
4190 if(!memcmp(szNameBuf
,pFInfo
->Name
, nNameBufLen
)) goto ITypeLib2_fnIsName_exit
;
4191 for(i
=0;i
<pFInfo
->funcdesc
.cParams
;i
++)
4192 if(!memcmp(szNameBuf
,pFInfo
->pParamDesc
[i
].Name
, nNameBufLen
))
4193 goto ITypeLib2_fnIsName_exit
;
4195 for(pVInfo
=pTInfo
->varlist
;pVInfo
;pVInfo
=pVInfo
->next
)
4196 if(!memcmp(szNameBuf
,pVInfo
->Name
, nNameBufLen
)) goto ITypeLib2_fnIsName_exit
;
4201 ITypeLib2_fnIsName_exit
:
4202 TRACE("(%p)slow! search for %s: %s found!\n", This
,
4203 debugstr_w(szNameBuf
), *pfName
?"NOT":"");
4208 /* ITypeLib::FindName
4210 * Finds occurrences of a type description in a type library. This may be used
4211 * to quickly verify that a name exists in a type library.
4214 static HRESULT WINAPI
ITypeLib2_fnFindName(
4218 ITypeInfo
**ppTInfo
,
4222 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4223 ITypeInfoImpl
*pTInfo
;
4224 TLBFuncDesc
*pFInfo
;
4227 UINT nNameBufLen
= (lstrlenW(szNameBuf
)+1)*sizeof(WCHAR
);
4229 for(pTInfo
=This
->pTypeInfo
;pTInfo
&& j
<*pcFound
; pTInfo
=pTInfo
->next
){
4230 if(!memcmp(szNameBuf
,pTInfo
->Name
, nNameBufLen
)) goto ITypeLib2_fnFindName_exit
;
4231 for(pFInfo
=pTInfo
->funclist
;pFInfo
;pFInfo
=pFInfo
->next
) {
4232 if(!memcmp(szNameBuf
,pFInfo
->Name
,nNameBufLen
)) goto ITypeLib2_fnFindName_exit
;
4233 for(i
=0;i
<pFInfo
->funcdesc
.cParams
;i
++) {
4234 if(!memcmp(szNameBuf
,pFInfo
->pParamDesc
[i
].Name
,nNameBufLen
))
4235 goto ITypeLib2_fnFindName_exit
;
4238 for(pVInfo
=pTInfo
->varlist
;pVInfo
;pVInfo
=pVInfo
->next
)
4239 if(!memcmp(szNameBuf
,pVInfo
->Name
, nNameBufLen
)) goto ITypeLib2_fnFindName_exit
;
4241 ITypeLib2_fnFindName_exit
:
4242 ITypeInfo_AddRef((ITypeInfo
*)pTInfo
);
4243 ppTInfo
[j
]=(LPTYPEINFO
)pTInfo
;
4246 TRACE("(%p)slow! search for %d with %s: found %d TypeInfo's!\n",
4247 This
, *pcFound
, debugstr_w(szNameBuf
), j
);
4254 /* ITypeLib::ReleaseTLibAttr
4256 * Releases the TLIBATTR originally obtained from ITypeLib::GetLibAttr.
4259 static VOID WINAPI
ITypeLib2_fnReleaseTLibAttr(
4261 TLIBATTR
*pTLibAttr
)
4263 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4264 TRACE("freeing (%p)\n",This
);
4265 HeapFree(GetProcessHeap(),0,pTLibAttr
);
4269 /* ITypeLib2::GetCustData
4271 * gets the custom data
4273 static HRESULT WINAPI
ITypeLib2_fnGetCustData(
4278 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4279 TLBCustData
*pCData
;
4281 for(pCData
=This
->pCustData
; pCData
; pCData
= pCData
->next
)
4283 if( IsEqualIID(guid
, &pCData
->guid
)) break;
4286 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
4290 VariantInit( pVarVal
);
4291 VariantCopy( pVarVal
, &pCData
->data
);
4294 return E_INVALIDARG
; /* FIXME: correct? */
4297 /* ITypeLib2::GetLibStatistics
4299 * Returns statistics about a type library that are required for efficient
4300 * sizing of hash tables.
4303 static HRESULT WINAPI
ITypeLib2_fnGetLibStatistics(
4305 ULONG
*pcUniqueNames
,
4306 ULONG
*pcchUniqueNames
)
4308 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4310 FIXME("(%p): stub!\n", This
);
4312 if(pcUniqueNames
) *pcUniqueNames
=1;
4313 if(pcchUniqueNames
) *pcchUniqueNames
=1;
4317 /* ITypeLib2::GetDocumentation2
4319 * Retrieves the library's documentation string, the complete Help file name
4320 * and path, the localization context to use, and the context ID for the
4321 * library Help topic in the Help file.
4324 static HRESULT WINAPI
ITypeLib2_fnGetDocumentation2(
4328 BSTR
*pbstrHelpString
,
4329 DWORD
*pdwHelpStringContext
,
4330 BSTR
*pbstrHelpStringDll
)
4332 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4336 FIXME("(%p) index %d lcid %d half implemented stub!\n", This
, index
, lcid
);
4338 /* the help string should be obtained from the helpstringdll,
4339 * using the _DLLGetDocumentation function, based on the supplied
4340 * lcid. Nice to do sometime...
4344 /* documentation for the typelib */
4346 *pbstrHelpString
=SysAllocString(This
->DocString
);
4347 if(pdwHelpStringContext
)
4348 *pdwHelpStringContext
=This
->dwHelpContext
;
4349 if(pbstrHelpStringDll
)
4350 *pbstrHelpStringDll
=SysAllocString(This
->HelpStringDll
);
4356 /* for a typeinfo */
4357 result
=ITypeLib2_GetTypeInfo(iface
, index
, &pTInfo
);
4359 if(SUCCEEDED(result
))
4361 ITypeInfo2
* pTInfo2
;
4362 result
= ITypeInfo_QueryInterface(pTInfo
,
4364 (LPVOID
*) &pTInfo2
);
4366 if(SUCCEEDED(result
))
4368 result
= ITypeInfo2_GetDocumentation2(pTInfo2
,
4372 pdwHelpStringContext
,
4373 pbstrHelpStringDll
);
4375 ITypeInfo2_Release(pTInfo2
);
4378 ITypeInfo_Release(pTInfo
);
4384 /* ITypeLib2::GetAllCustData
4386 * Gets all custom data items for the library.
4389 static HRESULT WINAPI
ITypeLib2_fnGetAllCustData(
4391 CUSTDATA
*pCustData
)
4393 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4394 TLBCustData
*pCData
;
4396 TRACE("(%p) returning %d items\n", This
, This
->ctCustData
);
4397 pCustData
->prgCustData
= TLB_Alloc(This
->ctCustData
* sizeof(CUSTDATAITEM
));
4398 if(pCustData
->prgCustData
){
4399 pCustData
->cCustData
=This
->ctCustData
;
4400 for(i
=0, pCData
=This
->pCustData
; pCData
; i
++, pCData
= pCData
->next
){
4401 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
4402 VariantCopy(& pCustData
->prgCustData
[i
].varValue
, & pCData
->data
);
4405 ERR(" OUT OF MEMORY!\n");
4406 return E_OUTOFMEMORY
;
4411 static const ITypeLib2Vtbl tlbvt
= {
4412 ITypeLib2_fnQueryInterface
,
4414 ITypeLib2_fnRelease
,
4415 ITypeLib2_fnGetTypeInfoCount
,
4416 ITypeLib2_fnGetTypeInfo
,
4417 ITypeLib2_fnGetTypeInfoType
,
4418 ITypeLib2_fnGetTypeInfoOfGuid
,
4419 ITypeLib2_fnGetLibAttr
,
4420 ITypeLib2_fnGetTypeComp
,
4421 ITypeLib2_fnGetDocumentation
,
4423 ITypeLib2_fnFindName
,
4424 ITypeLib2_fnReleaseTLibAttr
,
4426 ITypeLib2_fnGetCustData
,
4427 ITypeLib2_fnGetLibStatistics
,
4428 ITypeLib2_fnGetDocumentation2
,
4429 ITypeLib2_fnGetAllCustData
4433 static HRESULT WINAPI
ITypeLibComp_fnQueryInterface(ITypeComp
* iface
, REFIID riid
, LPVOID
* ppv
)
4435 ITypeLibImpl
*This
= impl_from_ITypeComp(iface
);
4437 return ITypeLib2_QueryInterface((ITypeLib
*)This
, riid
, ppv
);
4440 static ULONG WINAPI
ITypeLibComp_fnAddRef(ITypeComp
* iface
)
4442 ITypeLibImpl
*This
= impl_from_ITypeComp(iface
);
4444 return ITypeLib2_AddRef((ITypeLib2
*)This
);
4447 static ULONG WINAPI
ITypeLibComp_fnRelease(ITypeComp
* iface
)
4449 ITypeLibImpl
*This
= impl_from_ITypeComp(iface
);
4451 return ITypeLib2_Release((ITypeLib2
*)This
);
4454 static HRESULT WINAPI
ITypeLibComp_fnBind(
4459 ITypeInfo
** ppTInfo
,
4460 DESCKIND
* pDescKind
,
4463 ITypeLibImpl
*This
= impl_from_ITypeComp(iface
);
4464 ITypeInfoImpl
*pTypeInfo
;
4466 TRACE("(%s, 0x%x, 0x%x, %p, %p, %p)\n", debugstr_w(szName
), lHash
, wFlags
, ppTInfo
, pDescKind
, pBindPtr
);
4468 *pDescKind
= DESCKIND_NONE
;
4469 pBindPtr
->lptcomp
= NULL
;
4472 for (pTypeInfo
= This
->pTypeInfo
; pTypeInfo
; pTypeInfo
= pTypeInfo
->next
)
4474 TRACE("testing %s\n", debugstr_w(pTypeInfo
->Name
));
4476 /* FIXME: check wFlags here? */
4477 /* FIXME: we should use a hash table to look this info up using lHash
4478 * instead of an O(n) search */
4479 if ((pTypeInfo
->TypeAttr
.typekind
== TKIND_ENUM
) ||
4480 (pTypeInfo
->TypeAttr
.typekind
== TKIND_MODULE
))
4482 if (pTypeInfo
->Name
&& !strcmpW(pTypeInfo
->Name
, szName
))
4484 *pDescKind
= DESCKIND_TYPECOMP
;
4485 pBindPtr
->lptcomp
= (ITypeComp
*)&pTypeInfo
->lpVtblTypeComp
;
4486 ITypeComp_AddRef(pBindPtr
->lptcomp
);
4487 TRACE("module or enum: %s\n", debugstr_w(szName
));
4492 if ((pTypeInfo
->TypeAttr
.typekind
== TKIND_MODULE
) ||
4493 (pTypeInfo
->TypeAttr
.typekind
== TKIND_ENUM
))
4495 ITypeComp
*pSubTypeComp
= (ITypeComp
*)&pTypeInfo
->lpVtblTypeComp
;
4498 hr
= ITypeComp_Bind(pSubTypeComp
, szName
, lHash
, wFlags
, ppTInfo
, pDescKind
, pBindPtr
);
4499 if (SUCCEEDED(hr
) && (*pDescKind
!= DESCKIND_NONE
))
4501 TRACE("found in module or in enum: %s\n", debugstr_w(szName
));
4506 if ((pTypeInfo
->TypeAttr
.typekind
== TKIND_COCLASS
) &&
4507 (pTypeInfo
->TypeAttr
.wTypeFlags
& TYPEFLAG_FAPPOBJECT
))
4509 ITypeComp
*pSubTypeComp
= (ITypeComp
*)&pTypeInfo
->lpVtblTypeComp
;
4511 ITypeInfo
*subtypeinfo
;
4513 DESCKIND subdesckind
;
4515 hr
= ITypeComp_Bind(pSubTypeComp
, szName
, lHash
, wFlags
,
4516 &subtypeinfo
, &subdesckind
, &subbindptr
);
4517 if (SUCCEEDED(hr
) && (subdesckind
!= DESCKIND_NONE
))
4519 TYPEDESC tdesc_appobject
=
4522 (TYPEDESC
*)pTypeInfo
->hreftype
4526 const VARDESC vardesc_appobject
=
4529 NULL
, /* lpstrSchema */
4544 VAR_STATIC
/* varkind */
4547 TRACE("found in implicit app object: %s\n", debugstr_w(szName
));
4549 /* cleanup things filled in by Bind call so we can put our
4550 * application object data in there instead */
4551 switch (subdesckind
)
4553 case DESCKIND_FUNCDESC
:
4554 ITypeInfo_ReleaseFuncDesc(subtypeinfo
, subbindptr
.lpfuncdesc
);
4556 case DESCKIND_VARDESC
:
4557 ITypeInfo_ReleaseVarDesc(subtypeinfo
, subbindptr
.lpvardesc
);
4562 if (subtypeinfo
) ITypeInfo_Release(subtypeinfo
);
4564 if (pTypeInfo
->hreftype
== -1)
4565 FIXME("no hreftype for interface %p\n", pTypeInfo
);
4567 hr
= TLB_AllocAndInitVarDesc(&vardesc_appobject
, &pBindPtr
->lpvardesc
);
4571 *pDescKind
= DESCKIND_IMPLICITAPPOBJ
;
4572 *ppTInfo
= (ITypeInfo
*)pTypeInfo
;
4573 ITypeInfo_AddRef(*ppTInfo
);
4579 TRACE("name not found %s\n", debugstr_w(szName
));
4583 static HRESULT WINAPI
ITypeLibComp_fnBindType(
4587 ITypeInfo
** ppTInfo
,
4588 ITypeComp
** ppTComp
)
4590 FIXME("(%s, %x, %p, %p): stub\n", debugstr_w(szName
), lHash
, ppTInfo
, ppTComp
);
4594 static const ITypeCompVtbl tlbtcvt
=
4597 ITypeLibComp_fnQueryInterface
,
4598 ITypeLibComp_fnAddRef
,
4599 ITypeLibComp_fnRelease
,
4601 ITypeLibComp_fnBind
,
4602 ITypeLibComp_fnBindType
4605 /*================== ITypeInfo(2) Methods ===================================*/
4606 static ITypeInfo2
* WINAPI
ITypeInfo_Constructor(void)
4608 ITypeInfoImpl
* pTypeInfoImpl
;
4610 pTypeInfoImpl
= HeapAlloc(GetProcessHeap(),HEAP_ZERO_MEMORY
,sizeof(ITypeInfoImpl
));
4613 pTypeInfoImpl
->lpVtbl
= &tinfvt
;
4614 pTypeInfoImpl
->lpVtblTypeComp
= &tcompvt
;
4615 pTypeInfoImpl
->ref
=1;
4616 pTypeInfoImpl
->hreftype
= -1;
4617 pTypeInfoImpl
->TypeAttr
.memidConstructor
= MEMBERID_NIL
;
4618 pTypeInfoImpl
->TypeAttr
.memidDestructor
= MEMBERID_NIL
;
4620 TRACE("(%p)\n", pTypeInfoImpl
);
4621 return (ITypeInfo2
*) pTypeInfoImpl
;
4624 /* ITypeInfo::QueryInterface
4626 static HRESULT WINAPI
ITypeInfo_fnQueryInterface(
4631 ITypeLibImpl
*This
= (ITypeLibImpl
*)iface
;
4633 TRACE("(%p)->(IID: %s)\n",This
,debugstr_guid(riid
));
4636 if(IsEqualIID(riid
, &IID_IUnknown
) ||
4637 IsEqualIID(riid
,&IID_ITypeInfo
)||
4638 IsEqualIID(riid
,&IID_ITypeInfo2
))
4642 ITypeInfo_AddRef(iface
);
4643 TRACE("-- Interface: (%p)->(%p)\n",ppvObject
,*ppvObject
);
4646 TRACE("-- Interface: E_NOINTERFACE\n");
4647 return E_NOINTERFACE
;
4650 /* ITypeInfo::AddRef
4652 static ULONG WINAPI
ITypeInfo_fnAddRef( ITypeInfo2
*iface
)
4654 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4655 ULONG ref
= InterlockedIncrement(&This
->ref
);
4657 ITypeLib2_AddRef((ITypeLib2
*)This
->pTypeLib
);
4659 TRACE("(%p)->ref is %u\n",This
, ref
);
4663 /* ITypeInfo::Release
4665 static ULONG WINAPI
ITypeInfo_fnRelease(ITypeInfo2
*iface
)
4667 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4668 ULONG ref
= InterlockedDecrement(&This
->ref
);
4670 TRACE("(%p)->(%u)\n",This
, ref
);
4673 /* We don't release ITypeLib when ref=0 because
4674 it means that function is called by ITypeLib2_Release */
4675 ITypeLib2_Release((ITypeLib2
*)This
->pTypeLib
);
4677 TLBFuncDesc
*pFInfo
, *pFInfoNext
;
4678 TLBVarDesc
*pVInfo
, *pVInfoNext
;
4679 TLBImplType
*pImpl
, *pImplNext
;
4681 TRACE("destroying ITypeInfo(%p)\n",This
);
4683 if (This
->no_free_data
)
4688 SysFreeString(This
->Name
);
4692 if (This
->DocString
)
4694 SysFreeString(This
->DocString
);
4695 This
->DocString
= 0;
4700 SysFreeString(This
->DllName
);
4704 for (pFInfo
= This
->funclist
; pFInfo
; pFInfo
= pFInfoNext
)
4707 for(i
= 0;i
< pFInfo
->funcdesc
.cParams
; i
++)
4709 ELEMDESC
*elemdesc
= &pFInfo
->funcdesc
.lprgelemdescParam
[i
];
4710 if (elemdesc
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
)
4712 VariantClear(&elemdesc
->u
.paramdesc
.pparamdescex
->varDefaultValue
);
4713 TLB_Free(elemdesc
->u
.paramdesc
.pparamdescex
);
4715 SysFreeString(pFInfo
->pParamDesc
[i
].Name
);
4717 TLB_Free(pFInfo
->funcdesc
.lprgelemdescParam
);
4718 TLB_Free(pFInfo
->pParamDesc
);
4719 TLB_FreeCustData(pFInfo
->pCustData
);
4720 if (HIWORD(pFInfo
->Entry
) != 0 && pFInfo
->Entry
!= (BSTR
)-1)
4721 SysFreeString(pFInfo
->Entry
);
4722 SysFreeString(pFInfo
->HelpString
);
4723 SysFreeString(pFInfo
->Name
);
4725 pFInfoNext
= pFInfo
->next
;
4728 for (pVInfo
= This
->varlist
; pVInfo
; pVInfo
= pVInfoNext
)
4730 if (pVInfo
->vardesc
.varkind
== VAR_CONST
)
4732 VariantClear(pVInfo
->vardesc
.u
.lpvarValue
);
4733 TLB_Free(pVInfo
->vardesc
.u
.lpvarValue
);
4735 TLB_FreeCustData(pVInfo
->pCustData
);
4736 SysFreeString(pVInfo
->Name
);
4737 pVInfoNext
= pVInfo
->next
;
4740 for(pImpl
= This
->impltypelist
; pImpl
; pImpl
= pImplNext
)
4742 TLB_FreeCustData(pImpl
->pCustData
);
4743 pImplNext
= pImpl
->next
;
4746 TLB_FreeCustData(This
->pCustData
);
4751 ITypeInfo_Release((ITypeInfo
*)This
->next
);
4754 HeapFree(GetProcessHeap(),0,This
);
4760 /* ITypeInfo::GetTypeAttr
4762 * Retrieves a TYPEATTR structure that contains the attributes of the type
4766 static HRESULT WINAPI
ITypeInfo_fnGetTypeAttr( ITypeInfo2
*iface
,
4767 LPTYPEATTR
*ppTypeAttr
)
4769 const ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4772 TRACE("(%p)\n",This
);
4774 size
= sizeof(**ppTypeAttr
);
4775 if (This
->TypeAttr
.typekind
== TKIND_ALIAS
)
4776 size
+= TLB_SizeTypeDesc(&This
->TypeAttr
.tdescAlias
, FALSE
);
4778 *ppTypeAttr
= HeapAlloc(GetProcessHeap(), 0, size
);
4780 return E_OUTOFMEMORY
;
4782 **ppTypeAttr
= This
->TypeAttr
;
4784 if (This
->TypeAttr
.typekind
== TKIND_ALIAS
)
4785 TLB_CopyTypeDesc(&(*ppTypeAttr
)->tdescAlias
,
4786 &This
->TypeAttr
.tdescAlias
, (void *)(*ppTypeAttr
+ 1));
4788 if((*ppTypeAttr
)->typekind
== TKIND_DISPATCH
) {
4789 (*ppTypeAttr
)->cFuncs
= (*ppTypeAttr
)->cbSizeVft
/ 4; /* This should include all the inherited
4791 (*ppTypeAttr
)->cbSizeVft
= 28; /* This is always the size of IDispatch's vtbl */
4792 (*ppTypeAttr
)->wTypeFlags
&= ~TYPEFLAG_FOLEAUTOMATION
;
4797 /* ITypeInfo::GetTypeComp
4799 * Retrieves the ITypeComp interface for the type description, which enables a
4800 * client compiler to bind to the type description's members.
4803 static HRESULT WINAPI
ITypeInfo_fnGetTypeComp( ITypeInfo2
*iface
,
4804 ITypeComp
* *ppTComp
)
4806 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4808 TRACE("(%p)->(%p)\n", This
, ppTComp
);
4810 *ppTComp
= (ITypeComp
*)&This
->lpVtblTypeComp
;
4811 ITypeComp_AddRef(*ppTComp
);
4815 static SIZE_T
TLB_SizeElemDesc( const ELEMDESC
*elemdesc
)
4817 SIZE_T size
= TLB_SizeTypeDesc(&elemdesc
->tdesc
, FALSE
);
4818 if (elemdesc
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
)
4819 size
+= sizeof(*elemdesc
->u
.paramdesc
.pparamdescex
);
4823 static HRESULT
TLB_CopyElemDesc( const ELEMDESC
*src
, ELEMDESC
*dest
, char **buffer
)
4826 *buffer
= TLB_CopyTypeDesc(&dest
->tdesc
, &src
->tdesc
, *buffer
);
4827 if (src
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
)
4829 const PARAMDESCEX
*pparamdescex_src
= src
->u
.paramdesc
.pparamdescex
;
4830 PARAMDESCEX
*pparamdescex_dest
= dest
->u
.paramdesc
.pparamdescex
= (PARAMDESCEX
*)*buffer
;
4831 *buffer
+= sizeof(PARAMDESCEX
);
4832 *pparamdescex_dest
= *pparamdescex_src
;
4833 VariantInit(&pparamdescex_dest
->varDefaultValue
);
4834 return VariantCopy(&pparamdescex_dest
->varDefaultValue
,
4835 (VARIANTARG
*)&pparamdescex_src
->varDefaultValue
);
4838 dest
->u
.paramdesc
.pparamdescex
= NULL
;
4842 static void TLB_FreeElemDesc( ELEMDESC
*elemdesc
)
4844 if (elemdesc
->u
.paramdesc
.wParamFlags
& PARAMFLAG_FHASDEFAULT
)
4845 VariantClear(&elemdesc
->u
.paramdesc
.pparamdescex
->varDefaultValue
);
4848 static HRESULT
TLB_AllocAndInitFuncDesc( const FUNCDESC
*src
, FUNCDESC
**dest_ptr
, BOOL dispinterface
)
4852 SIZE_T size
= sizeof(*src
);
4856 size
+= sizeof(*src
->lprgscode
) * src
->cScodes
;
4857 size
+= TLB_SizeElemDesc(&src
->elemdescFunc
);
4858 for (i
= 0; i
< src
->cParams
; i
++)
4860 size
+= sizeof(ELEMDESC
);
4861 size
+= TLB_SizeElemDesc(&src
->lprgelemdescParam
[i
]);
4864 dest
= (FUNCDESC
*)SysAllocStringByteLen(NULL
, size
);
4865 if (!dest
) return E_OUTOFMEMORY
;
4868 if (dispinterface
) /* overwrite funckind */
4869 dest
->funckind
= FUNC_DISPATCH
;
4870 buffer
= (char *)(dest
+ 1);
4872 dest
->lprgscode
= (SCODE
*)buffer
;
4873 memcpy(dest
->lprgscode
, src
->lprgscode
, sizeof(*src
->lprgscode
) * src
->cScodes
);
4874 buffer
+= sizeof(*src
->lprgscode
) * src
->cScodes
;
4876 hr
= TLB_CopyElemDesc(&src
->elemdescFunc
, &dest
->elemdescFunc
, &buffer
);
4879 SysFreeString((BSTR
)dest
);
4883 dest
->lprgelemdescParam
= (ELEMDESC
*)buffer
;
4884 buffer
+= sizeof(ELEMDESC
) * src
->cParams
;
4885 for (i
= 0; i
< src
->cParams
; i
++)
4887 hr
= TLB_CopyElemDesc(&src
->lprgelemdescParam
[i
], &dest
->lprgelemdescParam
[i
], &buffer
);
4893 /* undo the above actions */
4894 for (i
= i
- 1; i
>= 0; i
--)
4895 TLB_FreeElemDesc(&dest
->lprgelemdescParam
[i
]);
4896 TLB_FreeElemDesc(&dest
->elemdescFunc
);
4897 SysFreeString((BSTR
)dest
);
4901 /* special treatment for dispinterfaces: this makes functions appear
4902 * to return their [retval] value when it is really returning an
4904 if (dispinterface
&& dest
->elemdescFunc
.tdesc
.vt
== VT_HRESULT
)
4906 if (dest
->cParams
&&
4907 (dest
->lprgelemdescParam
[dest
->cParams
- 1].u
.paramdesc
.wParamFlags
& PARAMFLAG_FRETVAL
))
4909 ELEMDESC
*elemdesc
= &dest
->lprgelemdescParam
[dest
->cParams
- 1];
4910 if (elemdesc
->tdesc
.vt
!= VT_PTR
)
4912 ERR("elemdesc should have started with VT_PTR instead of:\n");
4914 dump_ELEMDESC(elemdesc
);
4915 return E_UNEXPECTED
;
4918 /* copy last parameter to the return value. we are using a flat
4919 * buffer so there is no danger of leaking memory in
4921 dest
->elemdescFunc
.tdesc
= *elemdesc
->tdesc
.u
.lptdesc
;
4923 /* remove the last parameter */
4927 /* otherwise this function is made to appear to have no return
4929 dest
->elemdescFunc
.tdesc
.vt
= VT_VOID
;
4937 HRESULT
ITypeInfoImpl_GetInternalFuncDesc( ITypeInfo
*iface
, UINT index
, const FUNCDESC
**ppFuncDesc
)
4939 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4940 const TLBFuncDesc
*pFDesc
;
4943 for(i
=0, pFDesc
=This
->funclist
; i
!=index
&& pFDesc
; i
++, pFDesc
=pFDesc
->next
)
4948 *ppFuncDesc
= &pFDesc
->funcdesc
;
4952 return TYPE_E_ELEMENTNOTFOUND
;
4955 /* internal function to make the inherited interfaces' methods appear
4956 * part of the interface */
4957 static HRESULT
ITypeInfoImpl_GetInternalDispatchFuncDesc( ITypeInfo
*iface
,
4958 UINT index
, const FUNCDESC
**ppFuncDesc
, UINT
*funcs
, UINT
*hrefoffset
)
4960 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
4962 UINT implemented_funcs
= 0;
4967 *hrefoffset
= DISPATCH_HREF_OFFSET
;
4969 if(This
->impltypelist
)
4971 ITypeInfo
*pSubTypeInfo
;
4974 hr
= ITypeInfo_GetRefTypeInfo(iface
, This
->impltypelist
->hRef
, &pSubTypeInfo
);
4978 hr
= ITypeInfoImpl_GetInternalDispatchFuncDesc(pSubTypeInfo
,
4981 &sub_funcs
, hrefoffset
);
4982 implemented_funcs
+= sub_funcs
;
4983 ITypeInfo_Release(pSubTypeInfo
);
4986 *hrefoffset
+= DISPATCH_HREF_OFFSET
;
4990 *funcs
= implemented_funcs
+ This
->TypeAttr
.cFuncs
;
4994 if (index
< implemented_funcs
)
4995 return E_INVALIDARG
;
4996 return ITypeInfoImpl_GetInternalFuncDesc(iface
, index
- implemented_funcs
,
5000 static inline void ITypeInfoImpl_ElemDescAddHrefOffset( LPELEMDESC pElemDesc
, UINT hrefoffset
)
5002 TYPEDESC
*pTypeDesc
= &pElemDesc
->tdesc
;
5005 switch (pTypeDesc
->vt
)
5007 case VT_USERDEFINED
:
5008 pTypeDesc
->u
.hreftype
+= hrefoffset
;
5012 pTypeDesc
= pTypeDesc
->u
.lptdesc
;
5015 pTypeDesc
= &pTypeDesc
->u
.lpadesc
->tdescElem
;
5023 static inline void ITypeInfoImpl_FuncDescAddHrefOffset( LPFUNCDESC pFuncDesc
, UINT hrefoffset
)
5026 for (i
= 0; i
< pFuncDesc
->cParams
; i
++)
5027 ITypeInfoImpl_ElemDescAddHrefOffset(&pFuncDesc
->lprgelemdescParam
[i
], hrefoffset
);
5028 ITypeInfoImpl_ElemDescAddHrefOffset(&pFuncDesc
->elemdescFunc
, hrefoffset
);
5031 /* ITypeInfo::GetFuncDesc
5033 * Retrieves the FUNCDESC structure that contains information about a
5034 * specified function.
5037 static HRESULT WINAPI
ITypeInfo_fnGetFuncDesc( ITypeInfo2
*iface
, UINT index
,
5038 LPFUNCDESC
*ppFuncDesc
)
5040 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5041 const FUNCDESC
*internal_funcdesc
;
5043 UINT hrefoffset
= 0;
5045 TRACE("(%p) index %d\n", This
, index
);
5047 if (This
->TypeAttr
.typekind
== TKIND_DISPATCH
)
5048 hr
= ITypeInfoImpl_GetInternalDispatchFuncDesc((ITypeInfo
*)iface
, index
,
5049 &internal_funcdesc
, NULL
,
5052 hr
= ITypeInfoImpl_GetInternalFuncDesc((ITypeInfo
*)iface
, index
,
5053 &internal_funcdesc
);
5056 WARN("description for function %d not found\n", index
);
5060 hr
= TLB_AllocAndInitFuncDesc(
5063 This
->TypeAttr
.typekind
== TKIND_DISPATCH
);
5065 if ((This
->TypeAttr
.typekind
== TKIND_DISPATCH
) && hrefoffset
)
5066 ITypeInfoImpl_FuncDescAddHrefOffset(*ppFuncDesc
, hrefoffset
);
5068 TRACE("-- 0x%08x\n", hr
);
5072 static HRESULT
TLB_AllocAndInitVarDesc( const VARDESC
*src
, VARDESC
**dest_ptr
)
5076 SIZE_T size
= sizeof(*src
);
5079 if (src
->lpstrSchema
) size
+= (strlenW(src
->lpstrSchema
) + 1) * sizeof(WCHAR
);
5080 if (src
->varkind
== VAR_CONST
)
5081 size
+= sizeof(VARIANT
);
5082 size
+= TLB_SizeElemDesc(&src
->elemdescVar
);
5084 dest
= (VARDESC
*)SysAllocStringByteLen(NULL
, size
);
5085 if (!dest
) return E_OUTOFMEMORY
;
5088 buffer
= (char *)(dest
+ 1);
5089 if (src
->lpstrSchema
)
5092 dest
->lpstrSchema
= (LPOLESTR
)buffer
;
5093 len
= strlenW(src
->lpstrSchema
);
5094 memcpy(dest
->lpstrSchema
, src
->lpstrSchema
, (len
+ 1) * sizeof(WCHAR
));
5095 buffer
+= (len
+ 1) * sizeof(WCHAR
);
5098 if (src
->varkind
== VAR_CONST
)
5102 dest
->u
.lpvarValue
= (VARIANT
*)buffer
;
5103 *dest
->u
.lpvarValue
= *src
->u
.lpvarValue
;
5104 buffer
+= sizeof(VARIANT
);
5105 VariantInit(dest
->u
.lpvarValue
);
5106 hr
= VariantCopy(dest
->u
.lpvarValue
, src
->u
.lpvarValue
);
5109 SysFreeString((BSTR
)dest_ptr
);
5113 hr
= TLB_CopyElemDesc(&src
->elemdescVar
, &dest
->elemdescVar
, &buffer
);
5116 if (src
->varkind
== VAR_CONST
)
5117 VariantClear(dest
->u
.lpvarValue
);
5118 SysFreeString((BSTR
)dest
);
5125 /* ITypeInfo::GetVarDesc
5127 * Retrieves a VARDESC structure that describes the specified variable.
5130 static HRESULT WINAPI
ITypeInfo_fnGetVarDesc( ITypeInfo2
*iface
, UINT index
,
5131 LPVARDESC
*ppVarDesc
)
5133 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5135 const TLBVarDesc
*pVDesc
;
5137 TRACE("(%p) index %d\n", This
, index
);
5139 for(i
=0, pVDesc
=This
->varlist
; i
!=index
&& pVDesc
; i
++, pVDesc
=pVDesc
->next
)
5143 return TLB_AllocAndInitVarDesc(&pVDesc
->vardesc
, ppVarDesc
);
5145 return E_INVALIDARG
;
5148 /* ITypeInfo_GetNames
5150 * Retrieves the variable with the specified member ID (or the name of the
5151 * property or method and its parameters) that correspond to the specified
5154 static HRESULT WINAPI
ITypeInfo_fnGetNames( ITypeInfo2
*iface
, MEMBERID memid
,
5155 BSTR
*rgBstrNames
, UINT cMaxNames
, UINT
*pcNames
)
5157 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5158 const TLBFuncDesc
*pFDesc
;
5159 const TLBVarDesc
*pVDesc
;
5161 TRACE("(%p) memid=0x%08x Maxname=%d\n", This
, memid
, cMaxNames
);
5162 for(pFDesc
=This
->funclist
; pFDesc
&& pFDesc
->funcdesc
.memid
!= memid
; pFDesc
=pFDesc
->next
);
5165 /* function found, now return function and parameter names */
5166 for(i
=0; i
<cMaxNames
&& i
<= pFDesc
->funcdesc
.cParams
; i
++)
5169 *rgBstrNames
=SysAllocString(pFDesc
->Name
);
5171 rgBstrNames
[i
]=SysAllocString(pFDesc
->pParamDesc
[i
-1].Name
);
5177 for(pVDesc
=This
->varlist
; pVDesc
&& pVDesc
->vardesc
.memid
!= memid
; pVDesc
=pVDesc
->next
);
5180 *rgBstrNames
=SysAllocString(pVDesc
->Name
);
5185 if(This
->impltypelist
&&
5186 (This
->TypeAttr
.typekind
==TKIND_INTERFACE
|| This
->TypeAttr
.typekind
==TKIND_DISPATCH
)) {
5187 /* recursive search */
5190 result
=ITypeInfo_GetRefTypeInfo(iface
, This
->impltypelist
->hRef
,
5192 if(SUCCEEDED(result
))
5194 result
=ITypeInfo_GetNames(pTInfo
, memid
, rgBstrNames
, cMaxNames
, pcNames
);
5195 ITypeInfo_Release(pTInfo
);
5198 WARN("Could not search inherited interface!\n");
5202 WARN("no names found\n");
5205 return TYPE_E_ELEMENTNOTFOUND
;
5212 /* ITypeInfo::GetRefTypeOfImplType
5214 * If a type description describes a COM class, it retrieves the type
5215 * description of the implemented interface types. For an interface,
5216 * GetRefTypeOfImplType returns the type information for inherited interfaces,
5220 static HRESULT WINAPI
ITypeInfo_fnGetRefTypeOfImplType(
5225 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5228 const TLBImplType
*pImpl
= This
->impltypelist
;
5230 TRACE("(%p) index %d\n", This
, index
);
5231 if (TRACE_ON(ole
)) dump_TypeInfo(This
);
5235 /* only valid on dual interfaces;
5236 retrieve the associated TKIND_INTERFACE handle for the current TKIND_DISPATCH
5238 if( This
->TypeAttr
.typekind
!= TKIND_DISPATCH
) return E_INVALIDARG
;
5240 if (This
->TypeAttr
.wTypeFlags
& TYPEFLAG_FDISPATCHABLE
&&
5241 This
->TypeAttr
.wTypeFlags
& TYPEFLAG_FDUAL
)
5247 hr
= TYPE_E_ELEMENTNOTFOUND
;
5250 else if(index
== 0 && This
->TypeAttr
.typekind
== TKIND_DISPATCH
)
5252 /* All TKIND_DISPATCHs are made to look like they inherit from IDispatch */
5253 *pRefType
= This
->pTypeLib
->dispatch_href
;
5257 /* get element n from linked list */
5258 for(i
=0; pImpl
&& i
<index
; i
++)
5260 pImpl
= pImpl
->next
;
5264 *pRefType
= pImpl
->hRef
;
5266 hr
= TYPE_E_ELEMENTNOTFOUND
;
5272 TRACE("SUCCESS -- hRef = 0x%08x\n", *pRefType
);
5274 TRACE("FAILURE -- hresult = 0x%08x\n", hr
);
5280 /* ITypeInfo::GetImplTypeFlags
5282 * Retrieves the IMPLTYPEFLAGS enumeration for one implemented interface
5283 * or base interface in a type description.
5285 static HRESULT WINAPI
ITypeInfo_fnGetImplTypeFlags( ITypeInfo2
*iface
,
5286 UINT index
, INT
*pImplTypeFlags
)
5288 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5292 TRACE("(%p) index %d\n", This
, index
);
5293 for(i
=0, pImpl
=This
->impltypelist
; i
<index
&& pImpl
;
5294 i
++, pImpl
=pImpl
->next
)
5296 if(i
==index
&& pImpl
){
5297 *pImplTypeFlags
=pImpl
->implflags
;
5301 return TYPE_E_ELEMENTNOTFOUND
;
5305 * Maps between member names and member IDs, and parameter names and
5308 static HRESULT WINAPI
ITypeInfo_fnGetIDsOfNames( ITypeInfo2
*iface
,
5309 LPOLESTR
*rgszNames
, UINT cNames
, MEMBERID
*pMemId
)
5311 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5312 const TLBFuncDesc
*pFDesc
;
5313 const TLBVarDesc
*pVDesc
;
5317 TRACE("(%p) Name %s cNames %d\n", This
, debugstr_w(*rgszNames
),
5320 /* init out parameters in case of failure */
5321 for (i
= 0; i
< cNames
; i
++)
5322 pMemId
[i
] = MEMBERID_NIL
;
5324 for(pFDesc
=This
->funclist
; pFDesc
; pFDesc
=pFDesc
->next
) {
5326 if(!lstrcmpiW(*rgszNames
, pFDesc
->Name
)) {
5327 if(cNames
) *pMemId
=pFDesc
->funcdesc
.memid
;
5328 for(i
=1; i
< cNames
; i
++){
5329 for(j
=0; j
<pFDesc
->funcdesc
.cParams
; j
++)
5330 if(!lstrcmpiW(rgszNames
[i
],pFDesc
->pParamDesc
[j
].Name
))
5332 if( j
<pFDesc
->funcdesc
.cParams
)
5335 ret
=DISP_E_UNKNOWNNAME
;
5337 TRACE("-- 0x%08x\n", ret
);
5341 for(pVDesc
=This
->varlist
; pVDesc
; pVDesc
=pVDesc
->next
) {
5342 if(!lstrcmpiW(*rgszNames
, pVDesc
->Name
)) {
5343 if(cNames
) *pMemId
=pVDesc
->vardesc
.memid
;
5347 /* not found, see if it can be found in an inherited interface */
5348 if(This
->impltypelist
) {
5349 /* recursive search */
5351 ret
=ITypeInfo_GetRefTypeInfo(iface
,
5352 This
->impltypelist
->hRef
, &pTInfo
);
5354 ret
=ITypeInfo_GetIDsOfNames(pTInfo
, rgszNames
, cNames
, pMemId
);
5355 ITypeInfo_Release(pTInfo
);
5358 WARN("Could not search inherited interface!\n");
5360 WARN("no names found\n");
5361 return DISP_E_UNKNOWNNAME
;
5364 /* ITypeInfo::Invoke
5366 * Invokes a method, or accesses a property of an object, that implements the
5367 * interface described by the type description.
5370 _invoke(FARPROC func
,CALLCONV callconv
, int nrargs
, DWORD
*args
) {
5373 if (TRACE_ON(ole
)) {
5375 TRACE("Calling %p(",func
);
5376 for (i
=0;i
<nrargs
;i
++) TRACE("%08x,",args
[i
]);
5388 res
= func(args
[0]);
5391 res
= func(args
[0],args
[1]);
5394 res
= func(args
[0],args
[1],args
[2]);
5397 res
= func(args
[0],args
[1],args
[2],args
[3]);
5400 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4]);
5403 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5]);
5406 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6]);
5409 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7]);
5412 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8]);
5415 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9]);
5418 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10]);
5421 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11]);
5424 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12]);
5427 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13]);
5430 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14]);
5433 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15]);
5436 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16]);
5439 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17]);
5442 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18]);
5445 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19]);
5448 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20]);
5451 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21]);
5454 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22]);
5457 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23]);
5460 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24]);
5463 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24],args
[25]);
5466 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24],args
[25],args
[26]);
5469 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24],args
[25],args
[26],args
[27]);
5472 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24],args
[25],args
[26],args
[27],args
[28]);
5475 res
= func(args
[0],args
[1],args
[2],args
[3],args
[4],args
[5],args
[6],args
[7],args
[8],args
[9],args
[10],args
[11],args
[12],args
[13],args
[14],args
[15],args
[16],args
[17],args
[18],args
[19],args
[20],args
[21],args
[22],args
[23],args
[24],args
[25],args
[26],args
[27],args
[28],args
[29]);
5478 FIXME("unsupported number of arguments %d in stdcall\n",nrargs
);
5484 FIXME("unsupported calling convention %d\n",callconv
);
5488 TRACE("returns %08x\n",res
);
5492 extern int _argsize(DWORD vt
);
5494 static HRESULT
userdefined_to_variantvt(ITypeInfo
*tinfo
, const TYPEDESC
*tdesc
, VARTYPE
*vt
)
5497 ITypeInfo
*tinfo2
= NULL
;
5498 TYPEATTR
*tattr
= NULL
;
5500 hr
= ITypeInfo_GetRefTypeInfo(tinfo
, tdesc
->u
.hreftype
, &tinfo2
);
5503 ERR("Could not get typeinfo of hreftype %x for VT_USERDEFINED, "
5505 tdesc
->u
.hreftype
, hr
);
5508 hr
= ITypeInfo_GetTypeAttr(tinfo2
, &tattr
);
5511 ERR("ITypeInfo_GetTypeAttr failed, hr = 0x%08x\n", hr
);
5512 ITypeInfo_Release(tinfo2
);
5516 switch (tattr
->typekind
)
5523 tdesc
= &tattr
->tdescAlias
;
5524 hr
= typedescvt_to_variantvt(tinfo2
, &tattr
->tdescAlias
, vt
);
5527 case TKIND_INTERFACE
:
5528 if (tattr
->wTypeFlags
& TYPEFLAG_FDISPATCHABLE
)
5534 case TKIND_DISPATCH
:
5543 FIXME("TKIND_RECORD unhandled.\n");
5548 FIXME("TKIND_UNION unhandled.\n");
5553 FIXME("TKIND %d unhandled.\n",tattr
->typekind
);
5557 ITypeInfo_ReleaseTypeAttr(tinfo2
, tattr
);
5558 ITypeInfo_Release(tinfo2
);
5562 static HRESULT
typedescvt_to_variantvt(ITypeInfo
*tinfo
, const TYPEDESC
*tdesc
, VARTYPE
*vt
)
5566 /* enforce only one level of pointer indirection */
5567 if (!(*vt
& VT_BYREF
) && !(*vt
& VT_ARRAY
) && (tdesc
->vt
== VT_PTR
))
5569 tdesc
= tdesc
->u
.lptdesc
;
5571 /* munch VT_PTR -> VT_USERDEFINED(interface) into VT_UNKNOWN or
5572 * VT_DISPATCH and VT_PTR -> VT_PTR -> VT_USERDEFINED(interface) into
5573 * VT_BYREF|VT_DISPATCH or VT_BYREF|VT_UNKNOWN */
5574 if ((tdesc
->vt
== VT_USERDEFINED
) ||
5575 ((tdesc
->vt
== VT_PTR
) && (tdesc
->u
.lptdesc
->vt
== VT_USERDEFINED
)))
5577 VARTYPE vt_userdefined
= 0;
5578 const TYPEDESC
*tdesc_userdefined
= tdesc
;
5579 if (tdesc
->vt
== VT_PTR
)
5581 vt_userdefined
= VT_BYREF
;
5582 tdesc_userdefined
= tdesc
->u
.lptdesc
;
5584 hr
= userdefined_to_variantvt(tinfo
, tdesc_userdefined
, &vt_userdefined
);
5586 (((vt_userdefined
& VT_TYPEMASK
) == VT_UNKNOWN
) ||
5587 ((vt_userdefined
& VT_TYPEMASK
) == VT_DISPATCH
)))
5589 *vt
|= vt_userdefined
;
5601 case VT_USERDEFINED
:
5602 hr
= userdefined_to_variantvt(tinfo
, tdesc
, vt
);
5609 ERR("cannot convert type %d into variant VT\n", tdesc
->vt
);
5610 hr
= DISP_E_BADVARTYPE
;
5614 hr
= typedescvt_to_variantvt(tinfo
, tdesc
->u
.lptdesc
, vt
);
5623 /***********************************************************************
5624 * DispCallFunc (OLEAUT32.@)
5626 * Invokes a function of the specified calling convention, passing the
5627 * specified arguments and returns the result.
5630 * pvInstance [I] Optional pointer to the instance whose function to invoke.
5631 * oVft [I] The offset in the vtable. See notes.
5632 * cc [I] Calling convention of the function to call.
5633 * vtReturn [I] The return type of the function.
5634 * cActuals [I] Number of parameters.
5635 * prgvt [I] The types of the parameters to pass. This is used for sizing only.
5636 * prgpvarg [I] The arguments to pass.
5637 * pvargResult [O] The return value of the function. Can be NULL.
5641 * Failure: HRESULT code.
5644 * The HRESULT return value of this function is not affected by the return
5645 * value of the user supplied function, which is returned in pvargResult.
5647 * If pvInstance is NULL then a non-object function is to be called and oVft
5648 * is the address of the function to call.
5650 * The cc parameter can be one of the following values:
5663 void* pvInstance
, ULONG_PTR oVft
, CALLCONV cc
, VARTYPE vtReturn
, UINT cActuals
,
5664 VARTYPE
* prgvt
, VARIANTARG
** prgpvarg
, VARIANT
* pvargResult
)
5666 int i
, argsize
, argspos
;
5670 TRACE("(%p, %ld, %d, %d, %d, %p, %p, %p (vt=%d))\n",
5671 pvInstance
, oVft
, cc
, vtReturn
, cActuals
, prgvt
, prgpvarg
,
5672 pvargResult
, V_VT(pvargResult
));
5676 argsize
++; /* for This pointer */
5678 for (i
=0;i
<cActuals
;i
++)
5680 TRACE("arg %d: type %d, size %d\n",i
,prgvt
[i
],_argsize(prgvt
[i
]));
5681 dump_Variant(prgpvarg
[i
]);
5682 argsize
+= _argsize(prgvt
[i
]);
5684 args
= HeapAlloc(GetProcessHeap(),0,sizeof(DWORD
)*argsize
);
5689 args
[0] = (DWORD
)pvInstance
; /* the This pointer is always the first parameter */
5693 for (i
=0;i
<cActuals
;i
++)
5695 VARIANT
*arg
= prgpvarg
[i
];
5696 TRACE("Storing arg %d (%d as %d)\n",i
,V_VT(arg
),prgvt
[i
]);
5697 if (prgvt
[i
] == VT_VARIANT
)
5698 memcpy(&args
[argspos
], arg
, _argsize(prgvt
[i
]) * sizeof(DWORD
));
5700 memcpy(&args
[argspos
], &V_NONE(arg
), _argsize(prgvt
[i
]) * sizeof(DWORD
));
5701 argspos
+= _argsize(prgvt
[i
]);
5706 FARPROC
*vtable
= *(FARPROC
**)pvInstance
;
5707 hres
= _invoke(vtable
[oVft
/sizeof(void *)], cc
, argsize
, args
);
5710 /* if we aren't invoking an object then the function pointer is stored
5712 hres
= _invoke((FARPROC
)oVft
, cc
, argsize
, args
);
5714 if (pvargResult
&& (vtReturn
!= VT_EMPTY
))
5716 TRACE("Method returned 0x%08x\n",hres
);
5717 V_VT(pvargResult
) = vtReturn
;
5718 V_UI4(pvargResult
) = hres
;
5721 HeapFree(GetProcessHeap(),0,args
);
5725 #define INVBUF_ELEMENT_SIZE \
5726 (sizeof(VARIANTARG) + sizeof(VARIANTARG) + sizeof(VARIANTARG *) + sizeof(VARTYPE))
5727 #define INVBUF_GET_ARG_ARRAY(buffer, params) \
5728 ((VARIANTARG *)(buffer))
5729 #define INVBUF_GET_MISSING_ARG_ARRAY(buffer, params) \
5730 ((VARIANTARG *)((char *)(buffer) + sizeof(VARIANTARG) * (params)))
5731 #define INVBUF_GET_ARG_PTR_ARRAY(buffer, params) \
5732 ((VARIANTARG **)((char *)(buffer) + (sizeof(VARIANTARG) + sizeof(VARIANTARG)) * (params)))
5733 #define INVBUF_GET_ARG_TYPE_ARRAY(buffer, params) \
5734 ((VARTYPE *)((char *)(buffer) + (sizeof(VARIANTARG) + sizeof(VARIANTARG) + sizeof(VARIANTARG *)) * (params)))
5736 static HRESULT WINAPI
ITypeInfo_fnInvoke(
5741 DISPPARAMS
*pDispParams
,
5742 VARIANT
*pVarResult
,
5743 EXCEPINFO
*pExcepInfo
,
5746 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
5748 unsigned int var_index
;
5751 const TLBFuncDesc
*pFuncInfo
;
5753 TRACE("(%p)(%p,id=%d,flags=0x%08x,%p,%p,%p,%p)\n",
5754 This
,pIUnk
,memid
,wFlags
,pDispParams
,pVarResult
,pExcepInfo
,pArgErr
5759 ERR("NULL pDispParams not allowed\n");
5760 return E_INVALIDARG
;
5763 dump_DispParms(pDispParams
);
5765 if (pDispParams
->cNamedArgs
> pDispParams
->cArgs
)
5767 ERR("named argument array cannot be bigger than argument array (%d/%d)\n",
5768 pDispParams
->cNamedArgs
, pDispParams
->cArgs
);
5769 return E_INVALIDARG
;
5772 /* we do this instead of using GetFuncDesc since it will return a fake
5773 * FUNCDESC for dispinterfaces and we want the real function description */
5774 for (pFuncInfo
= This
->funclist
; pFuncInfo
; pFuncInfo
=pFuncInfo
->next
)
5775 if ((memid
== pFuncInfo
->funcdesc
.memid
) &&
5776 (wFlags
& pFuncInfo
->funcdesc
.invkind
))
5780 const FUNCDESC
*func_desc
= &pFuncInfo
->funcdesc
;
5784 TRACE("invoking:\n");
5785 dump_TLBFuncDescOne(pFuncInfo
);
5788 switch (func_desc
->funckind
) {
5789 case FUNC_PUREVIRTUAL
:
5790 case FUNC_VIRTUAL
: {
5791 void *buffer
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, INVBUF_ELEMENT_SIZE
* func_desc
->cParams
);
5793 VARIANT retval
; /* pointer for storing byref retvals in */
5794 VARIANTARG
**prgpvarg
= INVBUF_GET_ARG_PTR_ARRAY(buffer
, func_desc
->cParams
);
5795 VARIANTARG
*rgvarg
= INVBUF_GET_ARG_ARRAY(buffer
, func_desc
->cParams
);
5796 VARTYPE
*rgvt
= INVBUF_GET_ARG_TYPE_ARRAY(buffer
, func_desc
->cParams
);
5797 UINT cNamedArgs
= pDispParams
->cNamedArgs
;
5798 DISPID
*rgdispidNamedArgs
= pDispParams
->rgdispidNamedArgs
;
5802 if (func_desc
->invkind
& (INVOKE_PROPERTYPUT
|INVOKE_PROPERTYPUTREF
))
5804 if (!cNamedArgs
|| (rgdispidNamedArgs
[0] != DISPID_PROPERTYPUT
))
5806 ERR("first named arg for property put invocation must be DISPID_PROPERTYPUT\n");
5807 hres
= DISP_E_PARAMNOTFOUND
;
5810 /* ignore the DISPID_PROPERTYPUT named argument from now on */
5812 rgdispidNamedArgs
++;
5815 if (func_desc
->cParamsOpt
< 0 && cNamedArgs
)
5817 ERR("functions with the vararg attribute do not support named arguments\n");
5818 hres
= DISP_E_NONAMEDARGS
;
5822 for (i
= 0; i
< func_desc
->cParams
; i
++)
5824 TYPEDESC
*tdesc
= &func_desc
->lprgelemdescParam
[i
].tdesc
;
5825 hres
= typedescvt_to_variantvt((ITypeInfo
*)iface
, tdesc
, &rgvt
[i
]);
5830 TRACE("changing args\n");
5831 for (i
= 0; i
< func_desc
->cParams
; i
++)
5833 USHORT wParamFlags
= func_desc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
;
5834 VARIANTARG
*src_arg
;
5840 for (j
= 0; j
< cNamedArgs
; j
++)
5841 if (rgdispidNamedArgs
[j
] == i
)
5843 src_arg
= &pDispParams
->rgvarg
[j
];
5848 src_arg
= i
< pDispParams
->cArgs
? &pDispParams
->rgvarg
[pDispParams
->cArgs
- 1 - i
] : NULL
;
5850 if (wParamFlags
& PARAMFLAG_FRETVAL
)
5852 /* under most conditions the caller is not allowed to
5853 * pass in a dispparam arg in the index of what would be
5854 * the retval parameter. however, there is an exception
5855 * where the extra parameter is used in an extra
5856 * IDispatch::Invoke below */
5857 if ((i
< pDispParams
->cArgs
) &&
5858 ((func_desc
->cParams
!= 1) || !pVarResult
||
5859 !(func_desc
->invkind
& INVOKE_PROPERTYGET
)))
5861 hres
= DISP_E_BADPARAMCOUNT
;
5865 /* note: this check is placed so that if the caller passes
5866 * in a VARIANTARG for the retval we just ignore it, like
5868 if (i
== func_desc
->cParams
- 1)
5871 arg
= prgpvarg
[i
] = &rgvarg
[i
];
5872 memset(arg
, 0, sizeof(*arg
));
5873 V_VT(arg
) = rgvt
[i
];
5874 memset(&retval
, 0, sizeof(retval
));
5875 V_BYREF(arg
) = &retval
;
5879 ERR("[retval] parameter must be the last parameter of the method (%d/%d)\n", i
, func_desc
->cParams
);
5880 hres
= E_UNEXPECTED
;
5886 dump_Variant(src_arg
);
5888 if (rgvt
[i
] == VT_VARIANT
)
5889 hres
= VariantCopy(&rgvarg
[i
], src_arg
);
5890 else if (rgvt
[i
] == (VT_VARIANT
| VT_BYREF
))
5892 if (rgvt
[i
] == V_VT(src_arg
))
5893 V_VARIANTREF(&rgvarg
[i
]) = V_VARIANTREF(src_arg
);
5896 VARIANTARG
*missing_arg
= INVBUF_GET_MISSING_ARG_ARRAY(buffer
, func_desc
->cParams
);
5897 hres
= VariantCopy(&missing_arg
[i
], src_arg
);
5898 V_VARIANTREF(&rgvarg
[i
]) = &missing_arg
[i
];
5900 V_VT(&rgvarg
[i
]) = rgvt
[i
];
5902 else if (rgvt
[i
] == (VT_VARIANT
| VT_ARRAY
) && func_desc
->cParamsOpt
< 0 && i
== func_desc
->cParams
-1)
5905 SAFEARRAYBOUND bound
;
5909 bound
.cElements
= pDispParams
->cArgs
-i
;
5910 if (!(a
= SafeArrayCreate(VT_VARIANT
, 1, &bound
)))
5912 ERR("SafeArrayCreate failed\n");
5915 hres
= SafeArrayAccessData(a
, (LPVOID
)&v
);
5918 ERR("SafeArrayAccessData failed with %x\n", hres
);
5921 for (j
= 0; j
< bound
.cElements
; j
++)
5922 VariantCopy(&v
[j
], &pDispParams
->rgvarg
[pDispParams
->cArgs
- 1 - i
- j
]);
5923 hres
= SafeArrayUnaccessData(a
);
5926 ERR("SafeArrayUnaccessData failed with %x\n", hres
);
5929 V_ARRAY(&rgvarg
[i
]) = a
;
5930 V_VT(&rgvarg
[i
]) = rgvt
[i
];
5932 else if ((rgvt
[i
] & VT_BYREF
) && !V_ISBYREF(src_arg
))
5934 VARIANTARG
*missing_arg
= INVBUF_GET_MISSING_ARG_ARRAY(buffer
, func_desc
->cParams
);
5935 V_VT(&missing_arg
[i
]) = V_VT(src_arg
);
5936 hres
= VariantChangeType(&missing_arg
[i
], src_arg
, 0, rgvt
[i
] & ~VT_BYREF
);
5937 V_BYREF(&rgvarg
[i
]) = &V_NONE(&missing_arg
[i
]);
5938 V_VT(&rgvarg
[i
]) = rgvt
[i
];
5940 else if ((rgvt
[i
] & VT_BYREF
) && (rgvt
[i
] == V_VT(src_arg
)))
5942 V_BYREF(&rgvarg
[i
]) = V_BYREF(src_arg
);
5943 V_VT(&rgvarg
[i
]) = rgvt
[i
];
5947 /* FIXME: this doesn't work for VT_BYREF arguments if
5948 * they are not the same type as in the paramdesc */
5949 V_VT(&rgvarg
[i
]) = V_VT(src_arg
);
5950 hres
= VariantChangeType(&rgvarg
[i
], src_arg
, 0, rgvt
[i
]);
5951 V_VT(&rgvarg
[i
]) = rgvt
[i
];
5956 ERR("failed to convert param %d to %s%s from %s%s\n", i
,
5957 debugstr_vt(rgvt
[i
]), debugstr_vf(rgvt
[i
]),
5958 debugstr_VT(src_arg
), debugstr_VF(src_arg
));
5961 prgpvarg
[i
] = &rgvarg
[i
];
5963 else if (wParamFlags
& PARAMFLAG_FOPT
)
5966 arg
= prgpvarg
[i
] = &rgvarg
[i
];
5967 if (wParamFlags
& PARAMFLAG_FHASDEFAULT
)
5969 hres
= VariantCopy(arg
, &func_desc
->lprgelemdescParam
[i
].u
.paramdesc
.pparamdescex
->varDefaultValue
);
5975 VARIANTARG
*missing_arg
;
5976 /* if the function wants a pointer to a variant then
5977 * set that up, otherwise just pass the VT_ERROR in
5978 * the argument by value */
5979 if (rgvt
[i
] & VT_BYREF
)
5981 missing_arg
= INVBUF_GET_MISSING_ARG_ARRAY(buffer
, func_desc
->cParams
) + i
;
5982 V_VT(arg
) = VT_VARIANT
| VT_BYREF
;
5983 V_VARIANTREF(arg
) = missing_arg
;
5987 V_VT(missing_arg
) = VT_ERROR
;
5988 V_ERROR(missing_arg
) = DISP_E_PARAMNOTFOUND
;
5993 hres
= DISP_E_BADPARAMCOUNT
;
5997 if (FAILED(hres
)) goto func_fail
; /* FIXME: we don't free changed types here */
5999 /* VT_VOID is a special case for return types, so it is not
6000 * handled in the general function */
6001 if (func_desc
->elemdescFunc
.tdesc
.vt
== VT_VOID
)
6002 V_VT(&varresult
) = VT_EMPTY
;
6005 V_VT(&varresult
) = 0;
6006 hres
= typedescvt_to_variantvt((ITypeInfo
*)iface
, &func_desc
->elemdescFunc
.tdesc
, &V_VT(&varresult
));
6007 if (FAILED(hres
)) goto func_fail
; /* FIXME: we don't free changed types here */
6010 hres
= DispCallFunc(pIUnk
, func_desc
->oVft
, func_desc
->callconv
,
6011 V_VT(&varresult
), func_desc
->cParams
, rgvt
,
6012 prgpvarg
, &varresult
);
6014 for (i
= 0; i
< func_desc
->cParams
; i
++)
6016 USHORT wParamFlags
= func_desc
->lprgelemdescParam
[i
].u
.paramdesc
.wParamFlags
;
6017 if (wParamFlags
& PARAMFLAG_FRETVAL
)
6021 TRACE("[retval] value: ");
6022 dump_Variant(prgpvarg
[i
]);
6027 VariantInit(pVarResult
);
6028 /* deref return value */
6029 hres
= VariantCopyInd(pVarResult
, prgpvarg
[i
]);
6032 /* free data stored in varresult. Note that
6033 * VariantClear doesn't do what we want because we are
6034 * working with byref types. */
6035 /* FIXME: clear safearrays, bstrs, records and
6036 * variants here too */
6037 if ((V_VT(prgpvarg
[i
]) == (VT_UNKNOWN
| VT_BYREF
)) ||
6038 (V_VT(prgpvarg
[i
]) == (VT_DISPATCH
| VT_BYREF
)))
6040 if(*V_UNKNOWNREF(prgpvarg
[i
]))
6041 IUnknown_Release(*V_UNKNOWNREF(prgpvarg
[i
]));
6045 else if (i
< pDispParams
->cArgs
)
6047 if (wParamFlags
& PARAMFLAG_FOUT
)
6049 VARIANTARG
*arg
= &pDispParams
->rgvarg
[pDispParams
->cArgs
- 1 - i
];
6051 if ((rgvt
[i
] == VT_BYREF
) && (V_VT(arg
) != VT_BYREF
))
6052 hres
= VariantChangeType(arg
, &rgvarg
[i
], 0, V_VT(arg
));
6056 ERR("failed to convert param %d to vt %d\n", i
,
6057 V_VT(&pDispParams
->rgvarg
[pDispParams
->cArgs
- 1 - i
]));
6061 else if (V_VT(prgpvarg
[i
]) == (VT_VARIANT
| VT_ARRAY
) &&
6062 func_desc
->cParamsOpt
< 0 &&
6063 i
== func_desc
->cParams
-1)
6065 SAFEARRAY
*a
= V_ARRAY(prgpvarg
[i
]);
6068 hres
= SafeArrayGetUBound(a
, 1, &ubound
);
6071 ERR("SafeArrayGetUBound failed with %x\n", hres
);
6074 hres
= SafeArrayAccessData(a
, (LPVOID
)&v
);
6077 ERR("SafeArrayAccessData failed with %x\n", hres
);
6080 for (j
= 0; j
<= ubound
; j
++)
6081 VariantClear(&v
[j
]);
6082 hres
= SafeArrayUnaccessData(a
);
6085 ERR("SafeArrayUnaccessData failed with %x\n", hres
);
6089 VariantClear(&rgvarg
[i
]);
6091 else if (wParamFlags
& PARAMFLAG_FOPT
)
6093 if (wParamFlags
& PARAMFLAG_FHASDEFAULT
)
6094 VariantClear(&rgvarg
[i
]);
6098 if ((V_VT(&varresult
) == VT_ERROR
) && FAILED(V_ERROR(&varresult
)))
6100 WARN("invoked function failed with error 0x%08x\n", V_ERROR(&varresult
));
6101 hres
= DISP_E_EXCEPTION
;
6104 IErrorInfo
*pErrorInfo
;
6105 pExcepInfo
->scode
= V_ERROR(&varresult
);
6106 if (GetErrorInfo(0, &pErrorInfo
) == S_OK
)
6108 IErrorInfo_GetDescription(pErrorInfo
, &pExcepInfo
->bstrDescription
);
6109 IErrorInfo_GetHelpFile(pErrorInfo
, &pExcepInfo
->bstrHelpFile
);
6110 IErrorInfo_GetSource(pErrorInfo
, &pExcepInfo
->bstrSource
);
6111 IErrorInfo_GetHelpContext(pErrorInfo
, &pExcepInfo
->dwHelpContext
);
6113 IErrorInfo_Release(pErrorInfo
);
6117 if (V_VT(&varresult
) != VT_ERROR
)
6119 TRACE("varresult value: ");
6120 dump_Variant(&varresult
);
6124 VariantClear(pVarResult
);
6125 *pVarResult
= varresult
;
6128 VariantClear(&varresult
);
6131 if (SUCCEEDED(hres
) && pVarResult
&& (func_desc
->cParams
== 1) &&
6132 (func_desc
->invkind
& INVOKE_PROPERTYGET
) &&
6133 (func_desc
->lprgelemdescParam
[0].u
.paramdesc
.wParamFlags
& PARAMFLAG_FRETVAL
) &&
6134 (pDispParams
->cArgs
!= 0))
6136 if (V_VT(pVarResult
) == VT_DISPATCH
)
6138 IDispatch
*pDispatch
= V_DISPATCH(pVarResult
);
6139 /* Note: not VariantClear; we still need the dispatch
6140 * pointer to be valid */
6141 VariantInit(pVarResult
);
6142 hres
= IDispatch_Invoke(pDispatch
, DISPID_VALUE
, &IID_NULL
,
6143 GetSystemDefaultLCID(), INVOKE_PROPERTYGET
,
6144 pDispParams
, pVarResult
, pExcepInfo
, pArgErr
);
6145 IDispatch_Release(pDispatch
);
6149 VariantClear(pVarResult
);
6150 hres
= DISP_E_NOTACOLLECTION
;
6155 HeapFree(GetProcessHeap(), 0, buffer
);
6158 case FUNC_DISPATCH
: {
6161 hres
= IUnknown_QueryInterface((LPUNKNOWN
)pIUnk
,&IID_IDispatch
,(LPVOID
*)&disp
);
6162 if (SUCCEEDED(hres
)) {
6163 FIXME("Calling Invoke in IDispatch iface. untested!\n");
6164 hres
= IDispatch_Invoke(
6165 disp
,memid
,&IID_NULL
,LOCALE_USER_DEFAULT
,wFlags
,pDispParams
,
6166 pVarResult
,pExcepInfo
,pArgErr
6169 FIXME("IDispatch::Invoke failed with %08x. (Could be not a real error?)\n", hres
);
6170 IDispatch_Release(disp
);
6172 FIXME("FUNC_DISPATCH used on object without IDispatch iface?\n");
6176 FIXME("Unknown function invocation type %d\n", func_desc
->funckind
);
6181 TRACE("-- 0x%08x\n", hres
);
6184 } else if(SUCCEEDED(hres
= ITypeInfo2_GetVarIndexOfMemId(iface
, memid
, &var_index
))) {
6187 hres
= ITypeInfo2_GetVarDesc(iface
, var_index
, &var_desc
);
6188 if(FAILED(hres
)) return hres
;
6190 FIXME("varseek: Found memid, but variable-based invoking not supported\n");
6191 dump_VARDESC(var_desc
);
6192 ITypeInfo2_ReleaseVarDesc(iface
, var_desc
);
6196 /* not found, look for it in inherited interfaces */
6197 ITypeInfo2_GetTypeKind(iface
, &type_kind
);
6198 if(type_kind
== TKIND_INTERFACE
|| type_kind
== TKIND_DISPATCH
) {
6199 if(This
->impltypelist
) {
6200 /* recursive search */
6202 hres
= ITypeInfo_GetRefTypeInfo(iface
, This
->impltypelist
->hRef
, &pTInfo
);
6203 if(SUCCEEDED(hres
)){
6204 hres
= ITypeInfo_Invoke(pTInfo
,pIUnk
,memid
,wFlags
,pDispParams
,pVarResult
,pExcepInfo
,pArgErr
);
6205 ITypeInfo_Release(pTInfo
);
6208 WARN("Could not search inherited interface!\n");
6211 ERR("did not find member id %d, flags 0x%x!\n", memid
, wFlags
);
6212 return DISP_E_MEMBERNOTFOUND
;
6215 /* ITypeInfo::GetDocumentation
6217 * Retrieves the documentation string, the complete Help file name and path,
6218 * and the context ID for the Help topic for a specified type description.
6220 * (Can be tested by the Visual Basic Editor in Word for instance.)
6222 static HRESULT WINAPI
ITypeInfo_fnGetDocumentation( ITypeInfo2
*iface
,
6223 MEMBERID memid
, BSTR
*pBstrName
, BSTR
*pBstrDocString
,
6224 DWORD
*pdwHelpContext
, BSTR
*pBstrHelpFile
)
6226 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6227 const TLBFuncDesc
*pFDesc
;
6228 const TLBVarDesc
*pVDesc
;
6229 TRACE("(%p) memid %d Name(%p) DocString(%p)"
6230 " HelpContext(%p) HelpFile(%p)\n",
6231 This
, memid
, pBstrName
, pBstrDocString
, pdwHelpContext
, pBstrHelpFile
);
6232 if(memid
==MEMBERID_NIL
){ /* documentation for the typeinfo */
6234 *pBstrName
=SysAllocString(This
->Name
);
6236 *pBstrDocString
=SysAllocString(This
->DocString
);
6238 *pdwHelpContext
=This
->dwHelpContext
;
6240 *pBstrHelpFile
=SysAllocString(This
->DocString
);/* FIXME */
6242 }else {/* for a member */
6243 for(pFDesc
=This
->funclist
; pFDesc
; pFDesc
=pFDesc
->next
)
6244 if(pFDesc
->funcdesc
.memid
==memid
){
6246 *pBstrName
= SysAllocString(pFDesc
->Name
);
6248 *pBstrDocString
=SysAllocString(pFDesc
->HelpString
);
6250 *pdwHelpContext
=pFDesc
->helpcontext
;
6253 for(pVDesc
=This
->varlist
; pVDesc
; pVDesc
=pVDesc
->next
)
6254 if(pVDesc
->vardesc
.memid
==memid
){
6256 *pBstrName
= SysAllocString(pVDesc
->Name
);
6258 *pBstrDocString
=SysAllocString(pVDesc
->HelpString
);
6260 *pdwHelpContext
=pVDesc
->HelpContext
;
6265 if(This
->impltypelist
&&
6266 (This
->TypeAttr
.typekind
==TKIND_INTERFACE
|| This
->TypeAttr
.typekind
==TKIND_DISPATCH
)) {
6267 /* recursive search */
6270 result
= ITypeInfo_GetRefTypeInfo(iface
, This
->impltypelist
->hRef
,
6272 if(SUCCEEDED(result
)) {
6273 result
= ITypeInfo_GetDocumentation(pTInfo
, memid
, pBstrName
,
6274 pBstrDocString
, pdwHelpContext
, pBstrHelpFile
);
6275 ITypeInfo_Release(pTInfo
);
6278 WARN("Could not search inherited interface!\n");
6281 WARN("member %d not found\n", memid
);
6282 return TYPE_E_ELEMENTNOTFOUND
;
6285 /* ITypeInfo::GetDllEntry
6287 * Retrieves a description or specification of an entry point for a function
6290 static HRESULT WINAPI
ITypeInfo_fnGetDllEntry( ITypeInfo2
*iface
, MEMBERID memid
,
6291 INVOKEKIND invKind
, BSTR
*pBstrDllName
, BSTR
*pBstrName
,
6294 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6295 const TLBFuncDesc
*pFDesc
;
6297 TRACE("(%p)->(memid %x, %d, %p, %p, %p)\n", This
, memid
, invKind
, pBstrDllName
, pBstrName
, pwOrdinal
);
6299 if (pBstrDllName
) *pBstrDllName
= NULL
;
6300 if (pBstrName
) *pBstrName
= NULL
;
6301 if (pwOrdinal
) *pwOrdinal
= 0;
6303 if (This
->TypeAttr
.typekind
!= TKIND_MODULE
)
6304 return TYPE_E_BADMODULEKIND
;
6306 for(pFDesc
=This
->funclist
; pFDesc
; pFDesc
=pFDesc
->next
)
6307 if(pFDesc
->funcdesc
.memid
==memid
){
6308 dump_TypeInfo(This
);
6310 dump_TLBFuncDescOne(pFDesc
);
6313 *pBstrDllName
= SysAllocString(This
->DllName
);
6315 if (HIWORD(pFDesc
->Entry
) && (pFDesc
->Entry
!= (void*)-1)) {
6317 *pBstrName
= SysAllocString(pFDesc
->Entry
);
6325 *pwOrdinal
= (DWORD
)pFDesc
->Entry
;
6328 return TYPE_E_ELEMENTNOTFOUND
;
6331 /* internal function to make the inherited interfaces' methods appear
6332 * part of the interface */
6333 static HRESULT
ITypeInfoImpl_GetDispatchRefTypeInfo( ITypeInfo
*iface
,
6334 HREFTYPE
*hRefType
, ITypeInfo
**ppTInfo
)
6336 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6339 TRACE("%p, 0x%x\n", iface
, *hRefType
);
6341 if (This
->impltypelist
&& (*hRefType
& DISPATCH_HREF_MASK
))
6343 ITypeInfo
*pSubTypeInfo
;
6345 hr
= ITypeInfo_GetRefTypeInfo(iface
, This
->impltypelist
->hRef
, &pSubTypeInfo
);
6349 hr
= ITypeInfoImpl_GetDispatchRefTypeInfo(pSubTypeInfo
,
6351 ITypeInfo_Release(pSubTypeInfo
);
6355 *hRefType
-= DISPATCH_HREF_OFFSET
;
6357 if (!(*hRefType
& DISPATCH_HREF_MASK
))
6358 return ITypeInfo_GetRefTypeInfo(iface
, *hRefType
, ppTInfo
);
6363 /* ITypeInfo::GetRefTypeInfo
6365 * If a type description references other type descriptions, it retrieves
6366 * the referenced type descriptions.
6368 static HRESULT WINAPI
ITypeInfo_fnGetRefTypeInfo(
6371 ITypeInfo
**ppTInfo
)
6373 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6374 HRESULT result
= E_FAIL
;
6376 if ((This
->hreftype
!= -1) && (This
->hreftype
== hRefType
))
6378 *ppTInfo
= (ITypeInfo
*)&This
->lpVtbl
;
6379 ITypeInfo_AddRef(*ppTInfo
);
6382 else if (hRefType
== -1 &&
6383 (This
->TypeAttr
.typekind
== TKIND_DISPATCH
) &&
6384 (This
->TypeAttr
.wTypeFlags
& TYPEFLAG_FDUAL
))
6386 /* when we meet a DUAL dispinterface, we must create the interface
6389 ITypeInfoImpl
* pTypeInfoImpl
= (ITypeInfoImpl
*) ITypeInfo_Constructor();
6392 /* the interface version contains the same information as the dispinterface
6393 * copy the contents of the structs.
6395 *pTypeInfoImpl
= *This
;
6396 pTypeInfoImpl
->ref
= 0;
6398 /* change the type to interface */
6399 pTypeInfoImpl
->TypeAttr
.typekind
= TKIND_INTERFACE
;
6401 *ppTInfo
= (ITypeInfo
*) pTypeInfoImpl
;
6403 /* we use data structures from This, so we need to keep a reference
6404 * to it to stop it being destroyed and signal to the new instance to
6405 * not free its data structures when it is destroyed */
6406 pTypeInfoImpl
->no_free_data
= TRUE
;
6407 pTypeInfoImpl
->next
= This
;
6408 ITypeInfo_AddRef((ITypeInfo
*) This
);
6410 ITypeInfo_AddRef(*ppTInfo
);
6414 } else if ((hRefType
!= -1) && (hRefType
& DISPATCH_HREF_MASK
) &&
6415 (This
->TypeAttr
.typekind
== TKIND_DISPATCH
) &&
6416 (This
->TypeAttr
.wTypeFlags
& TYPEFLAG_FDUAL
))
6418 HREFTYPE href_dispatch
= hRefType
;
6419 result
= ITypeInfoImpl_GetDispatchRefTypeInfo((ITypeInfo
*)iface
, &href_dispatch
, ppTInfo
);
6421 TLBRefType
*ref_type
;
6422 LIST_FOR_EACH_ENTRY(ref_type
, &This
->pTypeLib
->ref_list
, TLBRefType
, entry
)
6424 if(ref_type
->reference
== hRefType
)
6427 if(&ref_type
->entry
== &This
->pTypeLib
->ref_list
)
6429 FIXME("Can't find pRefType for ref %x\n", hRefType
);
6432 if(hRefType
!= -1) {
6433 ITypeLib
*pTLib
= NULL
;
6435 if(ref_type
->pImpTLInfo
== TLB_REF_INTERNAL
) {
6437 result
= ITypeInfo_GetContainingTypeLib(iface
, &pTLib
, &Index
);
6439 if(ref_type
->pImpTLInfo
->pImpTypeLib
) {
6440 TRACE("typeinfo in imported typelib that is already loaded\n");
6441 pTLib
= (ITypeLib
*)ref_type
->pImpTLInfo
->pImpTypeLib
;
6442 ITypeLib2_AddRef(pTLib
);
6445 TRACE("typeinfo in imported typelib that isn't already loaded\n");
6446 result
= LoadRegTypeLib( &ref_type
->pImpTLInfo
->guid
,
6447 ref_type
->pImpTLInfo
->wVersionMajor
,
6448 ref_type
->pImpTLInfo
->wVersionMinor
,
6449 ref_type
->pImpTLInfo
->lcid
,
6452 if(!SUCCEEDED(result
)) {
6453 BSTR libnam
=SysAllocString(ref_type
->pImpTLInfo
->name
);
6454 result
=LoadTypeLib(libnam
, &pTLib
);
6455 SysFreeString(libnam
);
6457 if(SUCCEEDED(result
)) {
6458 ref_type
->pImpTLInfo
->pImpTypeLib
= (ITypeLibImpl
*)pTLib
;
6459 ITypeLib2_AddRef(pTLib
);
6463 if(SUCCEEDED(result
)) {
6464 if(ref_type
->index
== TLB_REF_USE_GUID
)
6465 result
= ITypeLib2_GetTypeInfoOfGuid(pTLib
,
6469 result
= ITypeLib2_GetTypeInfo(pTLib
, ref_type
->index
,
6473 ITypeLib2_Release(pTLib
);
6478 TRACE("(%p) hreftype 0x%04x loaded %s (%p)\n", This
, hRefType
,
6479 SUCCEEDED(result
)? "SUCCESS":"FAILURE", *ppTInfo
);
6483 /* ITypeInfo::AddressOfMember
6485 * Retrieves the addresses of static functions or variables, such as those
6488 static HRESULT WINAPI
ITypeInfo_fnAddressOfMember( ITypeInfo2
*iface
,
6489 MEMBERID memid
, INVOKEKIND invKind
, PVOID
*ppv
)
6491 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6497 TRACE("(%p)->(0x%x, 0x%x, %p)\n", This
, memid
, invKind
, ppv
);
6499 hr
= ITypeInfo_GetDllEntry(iface
, memid
, invKind
, &dll
, &entry
, &ordinal
);
6503 module
= LoadLibraryW(dll
);
6506 ERR("couldn't load %s\n", debugstr_w(dll
));
6508 if (entry
) SysFreeString(entry
);
6509 return STG_E_FILENOTFOUND
;
6511 /* FIXME: store library somewhere where we can free it */
6516 INT len
= WideCharToMultiByte(CP_ACP
, 0, entry
, -1, NULL
, 0, NULL
, NULL
);
6517 entryA
= HeapAlloc(GetProcessHeap(), 0, len
);
6518 WideCharToMultiByte(CP_ACP
, 0, entry
, -1, entryA
, len
, NULL
, NULL
);
6520 *ppv
= GetProcAddress(module
, entryA
);
6522 ERR("function not found %s\n", debugstr_a(entryA
));
6524 HeapFree(GetProcessHeap(), 0, entryA
);
6528 *ppv
= GetProcAddress(module
, MAKEINTRESOURCEA(ordinal
));
6530 ERR("function not found %d\n", ordinal
);
6534 if (entry
) SysFreeString(entry
);
6537 return TYPE_E_DLLFUNCTIONNOTFOUND
;
6542 /* ITypeInfo::CreateInstance
6544 * Creates a new instance of a type that describes a component object class
6547 static HRESULT WINAPI
ITypeInfo_fnCreateInstance( ITypeInfo2
*iface
,
6548 IUnknown
*pOuterUnk
, REFIID riid
, VOID
**ppvObj
)
6550 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6554 TRACE("(%p)->(%p, %s, %p)\n", This
, pOuterUnk
, debugstr_guid(riid
), ppvObj
);
6560 WARN("Not able to aggregate\n");
6561 return CLASS_E_NOAGGREGATION
;
6564 hr
= ITypeInfo_GetTypeAttr(iface
, &pTA
);
6565 if(FAILED(hr
)) return hr
;
6567 if(pTA
->typekind
!= TKIND_COCLASS
)
6569 WARN("CreateInstance on typeinfo of type %x\n", pTA
->typekind
);
6575 if(pTA
->wTypeFlags
& TYPEFLAG_FAPPOBJECT
)
6578 hr
= GetActiveObject(&pTA
->guid
, NULL
, &pUnk
);
6579 TRACE("GetActiveObject rets %08x\n", hr
);
6582 hr
= IUnknown_QueryInterface(pUnk
, riid
, ppvObj
);
6583 IUnknown_Release(pUnk
);
6588 hr
= CoCreateInstance(&pTA
->guid
, NULL
,
6589 CLSCTX_INPROC_SERVER
| CLSCTX_LOCAL_SERVER
,
6593 ITypeInfo_ReleaseTypeAttr(iface
, pTA
);
6597 /* ITypeInfo::GetMops
6599 * Retrieves marshalling information.
6601 static HRESULT WINAPI
ITypeInfo_fnGetMops( ITypeInfo2
*iface
, MEMBERID memid
,
6604 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6605 FIXME("(%p) stub!\n", This
);
6609 /* ITypeInfo::GetContainingTypeLib
6611 * Retrieves the containing type library and the index of the type description
6612 * within that type library.
6614 static HRESULT WINAPI
ITypeInfo_fnGetContainingTypeLib( ITypeInfo2
*iface
,
6615 ITypeLib
* *ppTLib
, UINT
*pIndex
)
6617 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6619 /* If a pointer is null, we simply ignore it, the ATL in particular passes pIndex as 0 */
6621 *pIndex
=This
->index
;
6622 TRACE("returning pIndex=%d\n", *pIndex
);
6626 *ppTLib
=(LPTYPELIB
)(This
->pTypeLib
);
6627 ITypeLib2_AddRef(*ppTLib
);
6628 TRACE("returning ppTLib=%p\n", *ppTLib
);
6634 /* ITypeInfo::ReleaseTypeAttr
6636 * Releases a TYPEATTR previously returned by GetTypeAttr.
6639 static void WINAPI
ITypeInfo_fnReleaseTypeAttr( ITypeInfo2
*iface
,
6640 TYPEATTR
* pTypeAttr
)
6642 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6643 TRACE("(%p)->(%p)\n", This
, pTypeAttr
);
6644 HeapFree(GetProcessHeap(), 0, pTypeAttr
);
6647 /* ITypeInfo::ReleaseFuncDesc
6649 * Releases a FUNCDESC previously returned by GetFuncDesc. *
6651 static void WINAPI
ITypeInfo_fnReleaseFuncDesc(
6653 FUNCDESC
*pFuncDesc
)
6655 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6658 TRACE("(%p)->(%p)\n", This
, pFuncDesc
);
6660 for (i
= 0; i
< pFuncDesc
->cParams
; i
++)
6661 TLB_FreeElemDesc(&pFuncDesc
->lprgelemdescParam
[i
]);
6662 TLB_FreeElemDesc(&pFuncDesc
->elemdescFunc
);
6664 SysFreeString((BSTR
)pFuncDesc
);
6667 /* ITypeInfo::ReleaseVarDesc
6669 * Releases a VARDESC previously returned by GetVarDesc.
6671 static void WINAPI
ITypeInfo_fnReleaseVarDesc( ITypeInfo2
*iface
,
6674 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6675 TRACE("(%p)->(%p)\n", This
, pVarDesc
);
6677 TLB_FreeElemDesc(&pVarDesc
->elemdescVar
);
6678 if (pVarDesc
->varkind
== VAR_CONST
)
6679 VariantClear(pVarDesc
->u
.lpvarValue
);
6680 SysFreeString((BSTR
)pVarDesc
);
6683 /* ITypeInfo2::GetTypeKind
6685 * Returns the TYPEKIND enumeration quickly, without doing any allocations.
6688 static HRESULT WINAPI
ITypeInfo2_fnGetTypeKind( ITypeInfo2
* iface
,
6689 TYPEKIND
*pTypeKind
)
6691 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6692 *pTypeKind
=This
->TypeAttr
.typekind
;
6693 TRACE("(%p) type 0x%0x\n", This
,*pTypeKind
);
6697 /* ITypeInfo2::GetTypeFlags
6699 * Returns the type flags without any allocations. This returns a DWORD type
6700 * flag, which expands the type flags without growing the TYPEATTR (type
6704 static HRESULT WINAPI
ITypeInfo2_fnGetTypeFlags( ITypeInfo2
*iface
, ULONG
*pTypeFlags
)
6706 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6707 *pTypeFlags
=This
->TypeAttr
.wTypeFlags
;
6708 TRACE("(%p) flags 0x%x\n", This
,*pTypeFlags
);
6712 /* ITypeInfo2::GetFuncIndexOfMemId
6713 * Binds to a specific member based on a known DISPID, where the member name
6714 * is not known (for example, when binding to a default member).
6717 static HRESULT WINAPI
ITypeInfo2_fnGetFuncIndexOfMemId( ITypeInfo2
* iface
,
6718 MEMBERID memid
, INVOKEKIND invKind
, UINT
*pFuncIndex
)
6720 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6721 const TLBFuncDesc
*pFuncInfo
;
6725 for(i
= 0, pFuncInfo
= This
->funclist
; pFuncInfo
; i
++, pFuncInfo
=pFuncInfo
->next
)
6726 if(memid
== pFuncInfo
->funcdesc
.memid
&& (invKind
& pFuncInfo
->funcdesc
.invkind
))
6732 result
= TYPE_E_ELEMENTNOTFOUND
;
6734 TRACE("(%p) memid 0x%08x invKind 0x%04x -> %s\n", This
,
6735 memid
, invKind
, SUCCEEDED(result
) ? "SUCCESS" : "FAILED");
6739 /* TypeInfo2::GetVarIndexOfMemId
6741 * Binds to a specific member based on a known DISPID, where the member name
6742 * is not known (for example, when binding to a default member).
6745 static HRESULT WINAPI
ITypeInfo2_fnGetVarIndexOfMemId( ITypeInfo2
* iface
,
6746 MEMBERID memid
, UINT
*pVarIndex
)
6748 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6749 TLBVarDesc
*pVarInfo
;
6752 for(i
=0, pVarInfo
=This
->varlist
; pVarInfo
&&
6753 memid
!= pVarInfo
->vardesc
.memid
; i
++, pVarInfo
=pVarInfo
->next
)
6759 result
= TYPE_E_ELEMENTNOTFOUND
;
6761 TRACE("(%p) memid 0x%08x -> %s\n", This
,
6762 memid
, SUCCEEDED(result
) ? "SUCCESS" : "FAILED");
6766 /* ITypeInfo2::GetCustData
6768 * Gets the custom data
6770 static HRESULT WINAPI
ITypeInfo2_fnGetCustData(
6775 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6776 TLBCustData
*pCData
;
6778 for(pCData
=This
->pCustData
; pCData
; pCData
= pCData
->next
)
6779 if( IsEqualIID(guid
, &pCData
->guid
)) break;
6781 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
6785 VariantInit( pVarVal
);
6786 VariantCopy( pVarVal
, &pCData
->data
);
6789 return E_INVALIDARG
; /* FIXME: correct? */
6792 /* ITypeInfo2::GetFuncCustData
6794 * Gets the custom data
6796 static HRESULT WINAPI
ITypeInfo2_fnGetFuncCustData(
6802 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6803 TLBCustData
*pCData
=NULL
;
6804 TLBFuncDesc
* pFDesc
;
6806 for(i
=0, pFDesc
=This
->funclist
; i
!=index
&& pFDesc
; i
++,
6807 pFDesc
=pFDesc
->next
);
6810 for(pCData
=pFDesc
->pCustData
; pCData
; pCData
= pCData
->next
)
6811 if( IsEqualIID(guid
, &pCData
->guid
)) break;
6813 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
6816 VariantInit( pVarVal
);
6817 VariantCopy( pVarVal
, &pCData
->data
);
6820 return E_INVALIDARG
; /* FIXME: correct? */
6823 /* ITypeInfo2::GetParamCustData
6825 * Gets the custom data
6827 static HRESULT WINAPI
ITypeInfo2_fnGetParamCustData(
6834 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6835 TLBCustData
*pCData
=NULL
;
6836 TLBFuncDesc
* pFDesc
;
6839 for(i
=0, pFDesc
=This
->funclist
; i
!=indexFunc
&& pFDesc
; i
++,pFDesc
=pFDesc
->next
);
6841 if(pFDesc
&& indexParam
<pFDesc
->funcdesc
.cParams
)
6842 for(pCData
=pFDesc
->pParamDesc
[indexParam
].pCustData
; pCData
;
6843 pCData
= pCData
->next
)
6844 if( IsEqualIID(guid
, &pCData
->guid
)) break;
6846 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
6850 VariantInit( pVarVal
);
6851 VariantCopy( pVarVal
, &pCData
->data
);
6854 return E_INVALIDARG
; /* FIXME: correct? */
6857 /* ITypeInfo2::GetVarCustData
6859 * Gets the custom data
6861 static HRESULT WINAPI
ITypeInfo2_fnGetVarCustData(
6867 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6868 TLBCustData
*pCData
=NULL
;
6869 TLBVarDesc
* pVDesc
;
6872 for(i
=0, pVDesc
=This
->varlist
; i
!=index
&& pVDesc
; i
++, pVDesc
=pVDesc
->next
);
6876 for(pCData
=pVDesc
->pCustData
; pCData
; pCData
= pCData
->next
)
6878 if( IsEqualIID(guid
, &pCData
->guid
)) break;
6882 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
6886 VariantInit( pVarVal
);
6887 VariantCopy( pVarVal
, &pCData
->data
);
6890 return E_INVALIDARG
; /* FIXME: correct? */
6893 /* ITypeInfo2::GetImplCustData
6895 * Gets the custom data
6897 static HRESULT WINAPI
ITypeInfo2_fnGetImplTypeCustData(
6903 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6904 TLBCustData
*pCData
=NULL
;
6905 TLBImplType
* pRDesc
;
6908 for(i
=0, pRDesc
=This
->impltypelist
; i
!=index
&& pRDesc
; i
++, pRDesc
=pRDesc
->next
);
6912 for(pCData
=pRDesc
->pCustData
; pCData
; pCData
= pCData
->next
)
6914 if( IsEqualIID(guid
, &pCData
->guid
)) break;
6918 TRACE("(%p) guid %s %s found!x)\n", This
, debugstr_guid(guid
), pCData
? "" : "NOT");
6922 VariantInit( pVarVal
);
6923 VariantCopy( pVarVal
, &pCData
->data
);
6926 return E_INVALIDARG
; /* FIXME: correct? */
6929 /* ITypeInfo2::GetDocumentation2
6931 * Retrieves the documentation string, the complete Help file name and path,
6932 * the localization context to use, and the context ID for the library Help
6933 * topic in the Help file.
6936 static HRESULT WINAPI
ITypeInfo2_fnGetDocumentation2(
6940 BSTR
*pbstrHelpString
,
6941 DWORD
*pdwHelpStringContext
,
6942 BSTR
*pbstrHelpStringDll
)
6944 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
6945 const TLBFuncDesc
*pFDesc
;
6946 const TLBVarDesc
*pVDesc
;
6947 TRACE("(%p) memid %d lcid(0x%x) HelpString(%p) "
6948 "HelpStringContext(%p) HelpStringDll(%p)\n",
6949 This
, memid
, lcid
, pbstrHelpString
, pdwHelpStringContext
,
6950 pbstrHelpStringDll
);
6951 /* the help string should be obtained from the helpstringdll,
6952 * using the _DLLGetDocumentation function, based on the supplied
6953 * lcid. Nice to do sometime...
6955 if(memid
==MEMBERID_NIL
){ /* documentation for the typeinfo */
6957 *pbstrHelpString
=SysAllocString(This
->Name
);
6958 if(pdwHelpStringContext
)
6959 *pdwHelpStringContext
=This
->dwHelpStringContext
;
6960 if(pbstrHelpStringDll
)
6961 *pbstrHelpStringDll
=
6962 SysAllocString(This
->pTypeLib
->HelpStringDll
);/* FIXME */
6964 }else {/* for a member */
6965 for(pFDesc
=This
->funclist
; pFDesc
; pFDesc
=pFDesc
->next
)
6966 if(pFDesc
->funcdesc
.memid
==memid
){
6968 *pbstrHelpString
=SysAllocString(pFDesc
->HelpString
);
6969 if(pdwHelpStringContext
)
6970 *pdwHelpStringContext
=pFDesc
->HelpStringContext
;
6971 if(pbstrHelpStringDll
)
6972 *pbstrHelpStringDll
=
6973 SysAllocString(This
->pTypeLib
->HelpStringDll
);/* FIXME */
6976 for(pVDesc
=This
->varlist
; pVDesc
; pVDesc
=pVDesc
->next
)
6977 if(pVDesc
->vardesc
.memid
==memid
){
6979 *pbstrHelpString
=SysAllocString(pVDesc
->HelpString
);
6980 if(pdwHelpStringContext
)
6981 *pdwHelpStringContext
=pVDesc
->HelpStringContext
;
6982 if(pbstrHelpStringDll
)
6983 *pbstrHelpStringDll
=
6984 SysAllocString(This
->pTypeLib
->HelpStringDll
);/* FIXME */
6988 return TYPE_E_ELEMENTNOTFOUND
;
6991 /* ITypeInfo2::GetAllCustData
6993 * Gets all custom data items for the Type info.
6996 static HRESULT WINAPI
ITypeInfo2_fnGetAllCustData(
6998 CUSTDATA
*pCustData
)
7000 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
7001 TLBCustData
*pCData
;
7004 TRACE("(%p) returning %d items\n", This
, This
->ctCustData
);
7006 pCustData
->prgCustData
= TLB_Alloc(This
->ctCustData
* sizeof(CUSTDATAITEM
));
7007 if(pCustData
->prgCustData
){
7008 pCustData
->cCustData
=This
->ctCustData
;
7009 for(i
=0, pCData
=This
->pCustData
; pCData
; i
++, pCData
= pCData
->next
){
7010 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
7011 VariantCopy(& pCustData
->prgCustData
[i
].varValue
, & pCData
->data
);
7014 ERR(" OUT OF MEMORY!\n");
7015 return E_OUTOFMEMORY
;
7020 /* ITypeInfo2::GetAllFuncCustData
7022 * Gets all custom data items for the specified Function
7025 static HRESULT WINAPI
ITypeInfo2_fnGetAllFuncCustData(
7028 CUSTDATA
*pCustData
)
7030 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
7031 TLBCustData
*pCData
;
7032 TLBFuncDesc
* pFDesc
;
7034 TRACE("(%p) index %d\n", This
, index
);
7035 for(i
=0, pFDesc
=This
->funclist
; i
!=index
&& pFDesc
; i
++,
7036 pFDesc
=pFDesc
->next
)
7039 pCustData
->prgCustData
=
7040 TLB_Alloc(pFDesc
->ctCustData
* sizeof(CUSTDATAITEM
));
7041 if(pCustData
->prgCustData
){
7042 pCustData
->cCustData
=pFDesc
->ctCustData
;
7043 for(i
=0, pCData
=pFDesc
->pCustData
; pCData
; i
++,
7044 pCData
= pCData
->next
){
7045 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
7046 VariantCopy(& pCustData
->prgCustData
[i
].varValue
,
7050 ERR(" OUT OF MEMORY!\n");
7051 return E_OUTOFMEMORY
;
7055 return TYPE_E_ELEMENTNOTFOUND
;
7058 /* ITypeInfo2::GetAllParamCustData
7060 * Gets all custom data items for the Functions
7063 static HRESULT WINAPI
ITypeInfo2_fnGetAllParamCustData( ITypeInfo2
* iface
,
7064 UINT indexFunc
, UINT indexParam
, CUSTDATA
*pCustData
)
7066 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
7067 TLBCustData
*pCData
=NULL
;
7068 TLBFuncDesc
* pFDesc
;
7070 TRACE("(%p) index %d\n", This
, indexFunc
);
7071 for(i
=0, pFDesc
=This
->funclist
; i
!=indexFunc
&& pFDesc
; i
++,
7072 pFDesc
=pFDesc
->next
)
7074 if(pFDesc
&& indexParam
<pFDesc
->funcdesc
.cParams
){
7075 pCustData
->prgCustData
=
7076 TLB_Alloc(pFDesc
->pParamDesc
[indexParam
].ctCustData
*
7077 sizeof(CUSTDATAITEM
));
7078 if(pCustData
->prgCustData
){
7079 pCustData
->cCustData
=pFDesc
->pParamDesc
[indexParam
].ctCustData
;
7080 for(i
=0, pCData
=pFDesc
->pParamDesc
[indexParam
].pCustData
;
7081 pCData
; i
++, pCData
= pCData
->next
){
7082 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
7083 VariantCopy(& pCustData
->prgCustData
[i
].varValue
,
7087 ERR(" OUT OF MEMORY!\n");
7088 return E_OUTOFMEMORY
;
7092 return TYPE_E_ELEMENTNOTFOUND
;
7095 /* ITypeInfo2::GetAllVarCustData
7097 * Gets all custom data items for the specified Variable
7100 static HRESULT WINAPI
ITypeInfo2_fnGetAllVarCustData( ITypeInfo2
* iface
,
7101 UINT index
, CUSTDATA
*pCustData
)
7103 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
7104 TLBCustData
*pCData
;
7105 TLBVarDesc
* pVDesc
;
7107 TRACE("(%p) index %d\n", This
, index
);
7108 for(i
=0, pVDesc
=This
->varlist
; i
!=index
&& pVDesc
; i
++,
7109 pVDesc
=pVDesc
->next
)
7112 pCustData
->prgCustData
=
7113 TLB_Alloc(pVDesc
->ctCustData
* sizeof(CUSTDATAITEM
));
7114 if(pCustData
->prgCustData
){
7115 pCustData
->cCustData
=pVDesc
->ctCustData
;
7116 for(i
=0, pCData
=pVDesc
->pCustData
; pCData
; i
++,
7117 pCData
= pCData
->next
){
7118 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
7119 VariantCopy(& pCustData
->prgCustData
[i
].varValue
,
7123 ERR(" OUT OF MEMORY!\n");
7124 return E_OUTOFMEMORY
;
7128 return TYPE_E_ELEMENTNOTFOUND
;
7131 /* ITypeInfo2::GetAllImplCustData
7133 * Gets all custom data items for the specified implementation type
7136 static HRESULT WINAPI
ITypeInfo2_fnGetAllImplTypeCustData(
7139 CUSTDATA
*pCustData
)
7141 ITypeInfoImpl
*This
= (ITypeInfoImpl
*)iface
;
7142 TLBCustData
*pCData
;
7143 TLBImplType
* pRDesc
;
7145 TRACE("(%p) index %d\n", This
, index
);
7146 for(i
=0, pRDesc
=This
->impltypelist
; i
!=index
&& pRDesc
; i
++,
7147 pRDesc
=pRDesc
->next
)
7150 pCustData
->prgCustData
=
7151 TLB_Alloc(pRDesc
->ctCustData
* sizeof(CUSTDATAITEM
));
7152 if(pCustData
->prgCustData
){
7153 pCustData
->cCustData
=pRDesc
->ctCustData
;
7154 for(i
=0, pCData
=pRDesc
->pCustData
; pCData
; i
++,
7155 pCData
= pCData
->next
){
7156 pCustData
->prgCustData
[i
].guid
=pCData
->guid
;
7157 VariantCopy(& pCustData
->prgCustData
[i
].varValue
,
7161 ERR(" OUT OF MEMORY!\n");
7162 return E_OUTOFMEMORY
;
7166 return TYPE_E_ELEMENTNOTFOUND
;
7169 static const ITypeInfo2Vtbl tinfvt
=
7172 ITypeInfo_fnQueryInterface
,
7174 ITypeInfo_fnRelease
,
7176 ITypeInfo_fnGetTypeAttr
,
7177 ITypeInfo_fnGetTypeComp
,
7178 ITypeInfo_fnGetFuncDesc
,
7179 ITypeInfo_fnGetVarDesc
,
7180 ITypeInfo_fnGetNames
,
7181 ITypeInfo_fnGetRefTypeOfImplType
,
7182 ITypeInfo_fnGetImplTypeFlags
,
7183 ITypeInfo_fnGetIDsOfNames
,
7185 ITypeInfo_fnGetDocumentation
,
7186 ITypeInfo_fnGetDllEntry
,
7187 ITypeInfo_fnGetRefTypeInfo
,
7188 ITypeInfo_fnAddressOfMember
,
7189 ITypeInfo_fnCreateInstance
,
7190 ITypeInfo_fnGetMops
,
7191 ITypeInfo_fnGetContainingTypeLib
,
7192 ITypeInfo_fnReleaseTypeAttr
,
7193 ITypeInfo_fnReleaseFuncDesc
,
7194 ITypeInfo_fnReleaseVarDesc
,
7196 ITypeInfo2_fnGetTypeKind
,
7197 ITypeInfo2_fnGetTypeFlags
,
7198 ITypeInfo2_fnGetFuncIndexOfMemId
,
7199 ITypeInfo2_fnGetVarIndexOfMemId
,
7200 ITypeInfo2_fnGetCustData
,
7201 ITypeInfo2_fnGetFuncCustData
,
7202 ITypeInfo2_fnGetParamCustData
,
7203 ITypeInfo2_fnGetVarCustData
,
7204 ITypeInfo2_fnGetImplTypeCustData
,
7205 ITypeInfo2_fnGetDocumentation2
,
7206 ITypeInfo2_fnGetAllCustData
,
7207 ITypeInfo2_fnGetAllFuncCustData
,
7208 ITypeInfo2_fnGetAllParamCustData
,
7209 ITypeInfo2_fnGetAllVarCustData
,
7210 ITypeInfo2_fnGetAllImplTypeCustData
,
7213 /******************************************************************************
7214 * CreateDispTypeInfo [OLEAUT32.31]
7216 * Build type information for an object so it can be called through an
7217 * IDispatch interface.
7220 * Success: S_OK. pptinfo contains the created ITypeInfo object.
7221 * Failure: E_INVALIDARG, if one or more arguments is invalid.
7224 * This call allows an objects methods to be accessed through IDispatch, by
7225 * building an ITypeInfo object that IDispatch can use to call through.
7227 HRESULT WINAPI
CreateDispTypeInfo(
7228 INTERFACEDATA
*pidata
, /* [I] Description of the interface to build type info for */
7229 LCID lcid
, /* [I] Locale Id */
7230 ITypeInfo
**pptinfo
) /* [O] Destination for created ITypeInfo object */
7232 ITypeInfoImpl
*pTIClass
, *pTIIface
;
7233 ITypeLibImpl
*pTypeLibImpl
;
7235 TLBFuncDesc
**ppFuncDesc
;
7239 pTypeLibImpl
= TypeLibImpl_Constructor();
7240 if (!pTypeLibImpl
) return E_FAIL
;
7242 pTIIface
= (ITypeInfoImpl
*)ITypeInfo_Constructor();
7243 pTIIface
->pTypeLib
= pTypeLibImpl
;
7244 pTIIface
->index
= 0;
7245 pTIIface
->Name
= NULL
;
7246 pTIIface
->dwHelpContext
= -1;
7247 memset(&pTIIface
->TypeAttr
.guid
, 0, sizeof(GUID
));
7248 pTIIface
->TypeAttr
.lcid
= lcid
;
7249 pTIIface
->TypeAttr
.typekind
= TKIND_INTERFACE
;
7250 pTIIface
->TypeAttr
.wMajorVerNum
= 0;
7251 pTIIface
->TypeAttr
.wMinorVerNum
= 0;
7252 pTIIface
->TypeAttr
.cbAlignment
= 2;
7253 pTIIface
->TypeAttr
.cbSizeInstance
= -1;
7254 pTIIface
->TypeAttr
.cbSizeVft
= -1;
7255 pTIIface
->TypeAttr
.cFuncs
= 0;
7256 pTIIface
->TypeAttr
.cImplTypes
= 0;
7257 pTIIface
->TypeAttr
.cVars
= 0;
7258 pTIIface
->TypeAttr
.wTypeFlags
= 0;
7260 ppFuncDesc
= &pTIIface
->funclist
;
7261 for(func
= 0; func
< pidata
->cMembers
; func
++) {
7262 METHODDATA
*md
= pidata
->pmethdata
+ func
;
7263 *ppFuncDesc
= HeapAlloc(GetProcessHeap(), 0, sizeof(**ppFuncDesc
));
7264 (*ppFuncDesc
)->Name
= SysAllocString(md
->szName
);
7265 (*ppFuncDesc
)->funcdesc
.memid
= md
->dispid
;
7266 (*ppFuncDesc
)->funcdesc
.lprgscode
= NULL
;
7267 (*ppFuncDesc
)->funcdesc
.funckind
= FUNC_VIRTUAL
;
7268 (*ppFuncDesc
)->funcdesc
.invkind
= md
->wFlags
;
7269 (*ppFuncDesc
)->funcdesc
.callconv
= md
->cc
;
7270 (*ppFuncDesc
)->funcdesc
.cParams
= md
->cArgs
;
7271 (*ppFuncDesc
)->funcdesc
.cParamsOpt
= 0;
7272 (*ppFuncDesc
)->funcdesc
.oVft
= md
->iMeth
<< 2;
7273 (*ppFuncDesc
)->funcdesc
.cScodes
= 0;
7274 (*ppFuncDesc
)->funcdesc
.wFuncFlags
= 0;
7275 (*ppFuncDesc
)->funcdesc
.elemdescFunc
.tdesc
.vt
= md
->vtReturn
;
7276 (*ppFuncDesc
)->funcdesc
.elemdescFunc
.u
.paramdesc
.wParamFlags
= PARAMFLAG_NONE
;
7277 (*ppFuncDesc
)->funcdesc
.elemdescFunc
.u
.paramdesc
.pparamdescex
= NULL
;
7278 (*ppFuncDesc
)->funcdesc
.lprgelemdescParam
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
7279 md
->cArgs
* sizeof(ELEMDESC
));
7280 (*ppFuncDesc
)->pParamDesc
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
,
7281 md
->cArgs
* sizeof(TLBParDesc
));
7282 for(param
= 0; param
< md
->cArgs
; param
++) {
7283 (*ppFuncDesc
)->funcdesc
.lprgelemdescParam
[param
].tdesc
.vt
= md
->ppdata
[param
].vt
;
7284 (*ppFuncDesc
)->pParamDesc
[param
].Name
= SysAllocString(md
->ppdata
[param
].szName
);
7286 (*ppFuncDesc
)->helpcontext
= 0;
7287 (*ppFuncDesc
)->HelpStringContext
= 0;
7288 (*ppFuncDesc
)->HelpString
= NULL
;
7289 (*ppFuncDesc
)->Entry
= NULL
;
7290 (*ppFuncDesc
)->ctCustData
= 0;
7291 (*ppFuncDesc
)->pCustData
= NULL
;
7292 (*ppFuncDesc
)->next
= NULL
;
7293 pTIIface
->TypeAttr
.cFuncs
++;
7294 ppFuncDesc
= &(*ppFuncDesc
)->next
;
7297 dump_TypeInfo(pTIIface
);
7299 pTypeLibImpl
->pTypeInfo
= pTIIface
;
7300 pTypeLibImpl
->TypeInfoCount
++;
7302 pTIClass
= (ITypeInfoImpl
*)ITypeInfo_Constructor();
7303 pTIClass
->pTypeLib
= pTypeLibImpl
;
7304 pTIClass
->index
= 1;
7305 pTIClass
->Name
= NULL
;
7306 pTIClass
->dwHelpContext
= -1;
7307 memset(&pTIClass
->TypeAttr
.guid
, 0, sizeof(GUID
));
7308 pTIClass
->TypeAttr
.lcid
= lcid
;
7309 pTIClass
->TypeAttr
.typekind
= TKIND_COCLASS
;
7310 pTIClass
->TypeAttr
.wMajorVerNum
= 0;
7311 pTIClass
->TypeAttr
.wMinorVerNum
= 0;
7312 pTIClass
->TypeAttr
.cbAlignment
= 2;
7313 pTIClass
->TypeAttr
.cbSizeInstance
= -1;
7314 pTIClass
->TypeAttr
.cbSizeVft
= -1;
7315 pTIClass
->TypeAttr
.cFuncs
= 0;
7316 pTIClass
->TypeAttr
.cImplTypes
= 1;
7317 pTIClass
->TypeAttr
.cVars
= 0;
7318 pTIClass
->TypeAttr
.wTypeFlags
= 0;
7320 pTIClass
->impltypelist
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*pTIClass
->impltypelist
));
7321 pTIClass
->impltypelist
->hRef
= 0;
7323 ref
= HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY
, sizeof(*ref
));
7326 ref
->pImpTLInfo
= TLB_REF_INTERNAL
;
7327 list_add_head(&pTypeLibImpl
->ref_list
, &ref
->entry
);
7329 dump_TypeInfo(pTIClass
);
7331 pTIIface
->next
= pTIClass
;
7332 pTypeLibImpl
->TypeInfoCount
++;
7334 *pptinfo
= (ITypeInfo
*)pTIClass
;
7336 ITypeInfo_AddRef(*pptinfo
);
7337 ITypeLib_Release((ITypeLib
*)&pTypeLibImpl
->lpVtbl
);
7343 static HRESULT WINAPI
ITypeComp_fnQueryInterface(ITypeComp
* iface
, REFIID riid
, LPVOID
* ppv
)
7345 ITypeInfoImpl
*This
= info_impl_from_ITypeComp(iface
);
7347 return ITypeInfo_QueryInterface((ITypeInfo
*)This
, riid
, ppv
);
7350 static ULONG WINAPI
ITypeComp_fnAddRef(ITypeComp
* iface
)
7352 ITypeInfoImpl
*This
= info_impl_from_ITypeComp(iface
);
7354 return ITypeInfo_AddRef((ITypeInfo
*)This
);
7357 static ULONG WINAPI
ITypeComp_fnRelease(ITypeComp
* iface
)
7359 ITypeInfoImpl
*This
= info_impl_from_ITypeComp(iface
);
7361 return ITypeInfo_Release((ITypeInfo
*)This
);
7364 static HRESULT WINAPI
ITypeComp_fnBind(
7369 ITypeInfo
** ppTInfo
,
7370 DESCKIND
* pDescKind
,
7373 ITypeInfoImpl
*This
= info_impl_from_ITypeComp(iface
);
7374 const TLBFuncDesc
*pFDesc
;
7375 const TLBVarDesc
*pVDesc
;
7376 HRESULT hr
= DISP_E_MEMBERNOTFOUND
;
7378 TRACE("(%s, %x, 0x%x, %p, %p, %p)\n", debugstr_w(szName
), lHash
, wFlags
, ppTInfo
, pDescKind
, pBindPtr
);
7380 *pDescKind
= DESCKIND_NONE
;
7381 pBindPtr
->lpfuncdesc
= NULL
;
7384 for(pFDesc
= This
->funclist
; pFDesc
; pFDesc
= pFDesc
->next
)
7385 if (!strcmpiW(pFDesc
->Name
, szName
)) {
7386 if (!wFlags
|| (pFDesc
->funcdesc
.invkind
& wFlags
))
7389 /* name found, but wrong flags */
7390 hr
= TYPE_E_TYPEMISMATCH
;
7395 HRESULT hr
= TLB_AllocAndInitFuncDesc(
7397 &pBindPtr
->lpfuncdesc
,
7398 This
->TypeAttr
.typekind
== TKIND_DISPATCH
);
7401 *pDescKind
= DESCKIND_FUNCDESC
;
7402 *ppTInfo
= (ITypeInfo
*)&This
->lpVtbl
;
7403 ITypeInfo_AddRef(*ppTInfo
);
7406 for(pVDesc
= This
->varlist
; pVDesc
; pVDesc
= pVDesc
->next
) {
7407 if (!strcmpiW(pVDesc
->Name
, szName
)) {
7408 HRESULT hr
= TLB_AllocAndInitVarDesc(&pVDesc
->vardesc
, &pBindPtr
->lpvardesc
);
7411 *pDescKind
= DESCKIND_VARDESC
;
7412 *ppTInfo
= (ITypeInfo
*)&This
->lpVtbl
;
7413 ITypeInfo_AddRef(*ppTInfo
);
7418 /* FIXME: search each inherited interface, not just the first */
7419 if (hr
== DISP_E_MEMBERNOTFOUND
&& This
->impltypelist
) {
7420 /* recursive search */
7424 hr
=ITypeInfo_GetRefTypeInfo((ITypeInfo
*)&This
->lpVtbl
, This
->impltypelist
->hRef
, &pTInfo
);
7427 hr
= ITypeInfo_GetTypeComp(pTInfo
,&pTComp
);
7428 ITypeInfo_Release(pTInfo
);
7432 hr
= ITypeComp_Bind(pTComp
, szName
, lHash
, wFlags
, ppTInfo
, pDescKind
, pBindPtr
);
7433 ITypeComp_Release(pTComp
);
7436 WARN("Could not search inherited interface!\n");
7438 WARN("did not find member with name %s, flags 0x%x!\n", debugstr_w(szName
), wFlags
);
7442 static HRESULT WINAPI
ITypeComp_fnBindType(
7446 ITypeInfo
** ppTInfo
,
7447 ITypeComp
** ppTComp
)
7449 TRACE("(%s, %x, %p, %p)\n", debugstr_w(szName
), lHash
, ppTInfo
, ppTComp
);
7451 /* strange behaviour (does nothing) but like the
7454 if (!ppTInfo
|| !ppTComp
)
7463 static const ITypeCompVtbl tcompvt
=
7466 ITypeComp_fnQueryInterface
,
7468 ITypeComp_fnRelease
,
7471 ITypeComp_fnBindType