123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231 |
- /*
- * Copyright 2002 John K. Hohm
- * Copyright 2003 Alexandre Julliard
- *
- * This library is free software; you can redistribute it and/or
- * modify it under the terms of the GNU Lesser General Public
- * License as published by the Free Software Foundation; either
- * version 2.1 of the License, or (at your option) any later version.
- *
- * This library is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
- * Lesser General Public License for more details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with this library; if not, write to the Free Software
- * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
- */
- import "unknwn.idl";
- /*****************************************************************************
- * Types
- */
- typedef GUID CATID;
- typedef REFGUID REFCATID;
- cpp_quote("#define CATID_NULL GUID_NULL")
- cpp_quote("#define IsEqualCATID(rcatid1, rcatid2) IsEqualGUID(rcatid1, rcatid2)")
- /*****************************************************************************
- * Aliases for EnumGUID
- */
- #define IEnumCATID IEnumGUID
- cpp_quote("#define IEnumCATID IEnumGUID")
- cpp_quote("#define IID_IEnumCATID IID_IEnumGUID")
- cpp_quote("#define LPENUMCATID LPENUMGUID")
- #define IEnumCLSID IEnumGUID
- cpp_quote("#define IEnumCLSID IEnumGUID")
- cpp_quote("#define IID_IEnumCLSID IID_IEnumGUID")
- cpp_quote("#define LPENUMCLSID LPENUMGUID")
- /*****************************************************************************
- * IEnumGUID
- */
- [
- object,
- uuid(0002e000-0000-0000-c000-000000000046),
- pointer_default(unique)
- ]
- interface IEnumGUID : IUnknown
- {
- typedef [unique] IEnumGUID *LPENUMGUID;
- HRESULT Next(
- [in] ULONG celt,
- [out, size_is(celt), length_is(*pceltFetched)] GUID *rgelt,
- [out] ULONG *pceltFetched);
- HRESULT Skip(
- [in] ULONG celt);
- HRESULT Reset();
- HRESULT Clone(
- [out] IEnumGUID **ppenum);
- }
- /*****************************************************************************
- * IEnumCATEGORYINFO
- */
- [
- object,
- uuid(0002e011-0000-0000-c000-000000000046),
- pointer_default(unique)
- ]
- interface IEnumCATEGORYINFO : IUnknown
- {
- typedef [unique] IEnumCATEGORYINFO *LPENUMCATEGORYINFO;
- typedef struct tagCATEGORYINFO
- {
- CATID catid; /* category identifier for component */
- LCID lcid; /* locale identifier */
- OLECHAR szDescription[128]; /* description of the category */
- } CATEGORYINFO, *LPCATEGORYINFO;
- HRESULT Next(
- [in] ULONG celt,
- [out, size_is(celt), length_is(*pceltFetched)] CATEGORYINFO* rgelt,
- [out] ULONG* pceltFetched);
- HRESULT Skip(
- [in] ULONG celt);
- HRESULT Reset();
- HRESULT Clone(
- [out] IEnumCATEGORYINFO** ppenum);
- }
- /*****************************************************************************
- * ICatInformation
- */
- [
- object,
- uuid(0002e013-0000-0000-c000-000000000046),
- pointer_default(unique)
- ]
- interface ICatInformation : IUnknown
- {
- typedef [unique] ICatInformation* LPCATINFORMATION;
- HRESULT EnumCategories(
- [in] LCID lcid,
- [out] IEnumCATEGORYINFO** ppenumCategoryInfo);
- HRESULT GetCategoryDesc(
- [in] REFCATID rcatid,
- [in] LCID lcid,
- [out] LPWSTR* pszDesc);
- [local]
- HRESULT EnumClassesOfCategories(
- [in] ULONG cImplemented,
- [in,size_is(cImplemented)] CATID rgcatidImpl[],
- [in] ULONG cRequired,
- [in,size_is(cRequired)] CATID rgcatidReq[],
- [out] IEnumCLSID** ppenumClsid);
- [call_as(EnumClassesOfCategories)]
- HRESULT RemoteEnumClassesOfCategories(
- [in] ULONG cImplemented,
- [in,unique,size_is(cImplemented)] CATID rgcatidImpl[],
- [in] ULONG cRequired,
- [in,unique,size_is(cRequired)] CATID rgcatidReq[],
- [out] IEnumCLSID** ppenumClsid);
- [local]
- HRESULT IsClassOfCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cImplemented,
- [in,size_is(cImplemented)] CATID rgcatidImpl[],
- [in] ULONG cRequired,
- [in,size_is(cRequired)] CATID rgcatidReq[]);
- [call_as(IsClassOfCategories)]
- HRESULT RemoteIsClassOfCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cImplemented,
- [in,unique,size_is(cImplemented)] CATID rgcatidImpl[],
- [in] ULONG cRequired,
- [in,unique,size_is(cRequired)] CATID rgcatidReq[] );
- HRESULT EnumImplCategoriesOfClass(
- [in] REFCLSID rclsid,
- [out] IEnumCATID** ppenumCatid);
- HRESULT EnumReqCategoriesOfClass(
- [in] REFCLSID rclsid,
- [out] IEnumCATID** ppenumCatid);
- }
- /*****************************************************************************
- * ICatRegister
- */
- [
- object,
- uuid(0002e012-0000-0000-c000-000000000046),
- pointer_default(unique)
- ]
- interface ICatRegister : IUnknown
- {
- typedef [unique] ICatRegister* LPCATREGISTER;
- HRESULT RegisterCategories(
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATEGORYINFO rgCategoryInfo[]);
- HRESULT UnRegisterCategories(
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATID rgcatid[]);
- HRESULT RegisterClassImplCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATID rgcatid[]);
- HRESULT UnRegisterClassImplCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATID rgcatid[]);
- HRESULT RegisterClassReqCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATID rgcatid[]);
- HRESULT UnRegisterClassReqCategories(
- [in] REFCLSID rclsid,
- [in] ULONG cCategories,
- [in, size_is(cCategories)] CATID rgcatid[]);
- }
- /*****************************************************************************
- * Category IDs
- */
- cpp_quote("DEFINE_GUID( CATID_Insertable, 0x40fc6ed3, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_Control, 0x40fc6ed4, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_Programmable, 0x40fc6ed5, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_IsShortcut, 0x40fc6ed6, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_NeverShowExt, 0x40fc6ed7, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_DocObject, 0x40fc6ed8, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_Printable, 0x40fc6ed9, 0x2438, 0x11cf, 0xa3, 0xdb, 0x08, 0x00, 0x36, 0xf1, 0x25, 0x02);")
- cpp_quote("DEFINE_GUID( CATID_RequiresDataPathHost, 0x0de86a50, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToMoniker, 0x0de86a51, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToStorage, 0x0de86a52, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToStreamInit, 0x0de86a53, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToStream, 0x0de86a54, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToMemory, 0x0de86a55, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToFile, 0x0de86a56, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_PersistsToPropertyBag, 0x0de86a57, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_InternetAware, 0x0de86a58, 0x2baa, 0x11cf, 0xa2, 0x29, 0x00, 0xaa, 0x00, 0x3d, 0x73, 0x52);")
- cpp_quote("DEFINE_GUID( CATID_DesignTimeUIActivatableControl, 0xf2bb56d1, 0xdb07, 0x11d1, 0xaa, 0x6b, 0x00, 0x60, 0x97, 0xdb, 0x95, 0x39);")
- /* The Component Category Manager */
- cpp_quote("DEFINE_GUID(CLSID_StdComponentCategoriesMgr, 0x0002e005, 0x00, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x46);")
|