| 1 |
cpp_quote("/**") |
| 2 |
cpp_quote(" * This file is part of the mingw-w64 runtime package.") |
| 3 |
cpp_quote(" * No warranty is given; refer to the file DISCLAIMER within this package.") |
| 4 |
cpp_quote(" */") |
| 5 |
cpp_quote("") |
| 6 |
|
| 7 |
import "oaidl.idl"; |
| 8 |
|
| 9 |
cpp_quote("#include <winapifamily.h>") |
| 10 |
cpp_quote("#if WINAPI_FAMILY_PARTITION(WINAPI_PARTITION_DESKTOP)") |
| 11 |
|
| 12 |
[object, uuid (8f026edb-785e-4470-A8E1-B4E84E9D1779), pointer_default (unique)] |
| 13 |
interface ITypeLibResolver : IUnknown { |
| 14 |
HRESULT ResolveTypeLib ([in] BSTR bstrSimpleName,[in] GUID tlbid,[in] LCID lcid,[in] USHORT wMajorVersion,[in] USHORT wMinorVersion,[in] SYSKIND syskind,[out] BSTR *pbstrResolvedTlbName); |
| 15 |
}; |
| 16 |
|
| 17 |
cpp_quote("STDAPI LoadTypeLibWithResolver (LPCOLESTR szFile, REGKIND regkind, ITypeLibResolver *pTlbResolver, ITypeLib **pptlib);") |
| 18 |
cpp_quote("STDAPI GetTypeLibInfo (LPWSTR szFile, GUID *pTypeLibID, LCID *pTypeLibLCID, SYSKIND *pTypeLibPlatform, USHORT *pTypeLibMajorVer, USHORT *pTypeLibMinorVer);") |
| 19 |
|
| 20 |
cpp_quote("#endif") |