Added abs_time_t structure to the server protocol, and added a dump
[wine] / include / wine / obj_comcat.h
1 /*
2  * Defines the COM interfaces and APIs related to Component Category Manager
3  *
4  * Depends on 'obj_enumguid.h'.
5  *
6  * Copyright (C) 2002 John K. Hohm
7  *
8  * This library is free software; you can redistribute it and/or
9  * modify it under the terms of the GNU Lesser General Public
10  * License as published by the Free Software Foundation; either
11  * version 2.1 of the License, or (at your option) any later version.
12  *
13  * This library is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
16  * Lesser General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public
19  * License along with this library; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
21  */
22
23 #ifndef __WINE_WINE_OBJ_COMCAT_H
24 #define __WINE_WINE_OBJ_COMCAT_H
25
26 #ifdef __cplusplus
27 extern "C" {
28 #endif /* defined(__cplusplus) */
29
30 /*****************************************************************************
31  * Types
32  */
33 typedef GUID CATID;
34 typedef REFGUID REFCATID;
35 #define CATID_NULL GUID_NULL
36 #define IsEqualCATID(a, b) IsEqualGUID(a, b)
37
38 typedef struct tagCATEGORYINFO {
39     CATID   catid;              /* category identifier for component */
40     LCID    lcid;               /* locale identifier */
41     OLECHAR szDescription[128]; /* description of the category */
42 } CATEGORYINFO, *LPCATEGORYINFO;
43
44 /*****************************************************************************
45  * Category IDs
46  */
47 DEFINE_GUID(CATID_Insertable,                     0x40FC6ED3, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
48 DEFINE_GUID(CATID_Control,                        0x40FC6ED4, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
49 DEFINE_GUID(CATID_Programmable,                   0x40FC6ED5, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
50 DEFINE_GUID(CATID_IsShortcut,                     0x40FC6ED6, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
51 DEFINE_GUID(CATID_NeverShowExt,                   0x40FC6ED7, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
52 DEFINE_GUID(CATID_DocObject,                      0x40FC6ED8, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
53 DEFINE_GUID(CATID_Printable,                      0x40FC6ED9, 0x2438, 0x11CF, 0xA3, 0xDB, 0x08, 0x00, 0x36, 0xF1, 0x25, 0x02);
54 DEFINE_GUID(CATID_RequiresDataPathHost,           0x0DE86A50, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
55 DEFINE_GUID(CATID_PersistsToMoniker,              0x0DE86A51, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
56 DEFINE_GUID(CATID_PersistsToStorage,              0x0DE86A52, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
57 DEFINE_GUID(CATID_PersistsToStreamInit,           0x0DE86A53, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
58 DEFINE_GUID(CATID_PersistsToStream,               0x0DE86A54, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
59 DEFINE_GUID(CATID_PersistsToMemory,               0x0DE86A55, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
60 DEFINE_GUID(CATID_PersistsToFile,                 0x0DE86A56, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
61 DEFINE_GUID(CATID_PersistsToPropertyBag,          0x0DE86A57, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
62 DEFINE_GUID(CATID_InternetAware,                  0x0DE86A58, 0x2BAA, 0x11CF, 0xA2, 0x29, 0x00, 0xAA, 0x00, 0x3D, 0x73, 0x52);
63 DEFINE_GUID(CATID_DesignTimeUIActivatableControl, 0xF2BB56D1, 0xDB07, 0x11D1, 0xAA, 0x6B, 0x00, 0x60, 0x97, 0xDB, 0x95, 0x39);
64
65 /*****************************************************************************
66  * Aliases for EnumGUID
67  */
68 #define IEnumCATID IEnumGUID
69 #define LPENUMCATID LPENUMGUID
70 #define IID_IEnumCATID IID_IEnumGUID
71
72 #define IEnumCLSID IEnumGUID
73 #define LPENUMCLSID LPENUMGUID
74 #define IID_IEnumCLSID IID_IEnumGUID
75
76 /*****************************************************************************
77  * Predeclare the interfaces
78  */
79 DEFINE_OLEGUID(IID_ICatInformation, 0x0002E013L, 0, 0);
80 typedef struct ICatInformation ICatInformation, *LPCATINFORMATION;
81
82 DEFINE_OLEGUID(IID_ICatRegister, 0x0002E012L, 0, 0);
83 typedef struct ICatRegister ICatRegister, *LPCATREGISTER;
84
85 DEFINE_OLEGUID(IID_IEnumCATEGORYINFO, 0x0002E011L, 0, 0);
86 typedef struct IEnumCATEGORYINFO IEnumCATEGORYINFO, *LPENUMCATEGORYINFO;
87
88 /* The Component Category Manager */
89 DEFINE_OLEGUID(CLSID_StdComponentCategoriesMgr, 0x0002E005L, 0, 0);
90
91 /*****************************************************************************
92  * ICatInformation
93  */
94 #define ICOM_INTERFACE ICatInformation
95 #define ICatInformation_METHODS \
96     ICOM_METHOD2(HRESULT, EnumCategories, LCID, lcid, IEnumCATEGORYINFO**, ppenumCatInfo) \
97     ICOM_METHOD3(HRESULT, GetCategoryDesc, REFCATID, rcatid, LCID, lcid, PWCHAR*, ppszDesc) \
98     ICOM_METHOD5(HRESULT, EnumClassesOfCategories, ULONG, cImplemented, CATID*, rgcatidImpl, ULONG, cRequired, CATID*, rgcatidReq, IEnumCLSID**, ppenumCLSID) \
99     ICOM_METHOD5(HRESULT, IsClassOfCategories, REFCLSID, rclsid, ULONG, cImplemented, CATID*, rgcatidImpl, ULONG, cRequired, CATID*, rgcatidReq) \
100     ICOM_METHOD2(HRESULT, EnumImplCategoriesOfClass, REFCLSID, rclsid, IEnumCATID**, ppenumCATID) \
101     ICOM_METHOD2(HRESULT, EnumReqCategoriesOfClass, REFCLSID, rclsid, IEnumCATID**, ppenumCATID)
102 #define ICatInformation_IMETHODS \
103     IUnknown_IMETHODS \
104     ICatInformation_METHODS
105 ICOM_DEFINE(ICatInformation,IUnknown)
106 #undef ICOM_INTERFACE
107
108 #ifdef ICOM_CINTERFACE
109 /*** IUnknown methods ***/
110 #define ICatInformation_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
111 #define ICatInformation_AddRef(p)             ICOM_CALL (AddRef,p)
112 #define ICatInformation_Release(p)            ICOM_CALL (Release,p)
113 /*** ICatInformation methods ***/
114 #define ICatInformation_EnumCategories(p,a,b) ICOM_CALL2(EnumCategories,p,a,b)
115 #define ICatInformation_GetCategoryDesc(p,a,b,c) ICOM_CALL3(GetCategoryDesc,p,a,b,c)
116 #define ICatInformation_EnumClassesOfCategories(p,a,b,c,d,e) ICOM_CALL5(EnumClassesOfCategories,p,a,b,c,d,e)
117 #define ICatInformation_IsClassOfCategories(p,a,b,c,d,e) ICOM_CALL5(IsClassOfCategories,p,a,b,c,d,e)
118 #define ICatInformation_EnumImplCategoriesOfClass(p,a,b) ICOM_CALL2(EnumImplCategoriesOfClass,p,a,b)
119 #define ICatInformation_EnumReqCategoriesOfClass(p,a,b) ICOM_CALL2(EnumReqCategoriesOfClass,p,a,b)
120 #endif
121
122 /*****************************************************************************
123  * ICatRegister
124  */
125 #define ICOM_INTERFACE ICatRegister
126 #define ICatRegister_METHODS \
127     ICOM_METHOD2(HRESULT, RegisterCategories, ULONG, cCategories, CATEGORYINFO*, rgCategoryInfo) \
128     ICOM_METHOD2(HRESULT, UnRegisterCategories, ULONG, cCategories, CATID*, rgcatid) \
129     ICOM_METHOD3(HRESULT, RegisterClassImplCategories, REFCLSID, rclsid, ULONG, cCategories, CATID*, rgcatid) \
130     ICOM_METHOD3(HRESULT, UnRegisterClassImplCategories, REFCLSID, rclsid, ULONG, cCategories, CATID*, rgcatid) \
131     ICOM_METHOD3(HRESULT, RegisterClassReqCategories, REFCLSID, rclsid, ULONG, cCategories, CATID*, rgcatid) \
132     ICOM_METHOD3(HRESULT, UnRegisterClassReqCategories, REFCLSID, rclsid, ULONG, cCategories, CATID*, rgcatid)
133 #define ICatRegister_IMETHODS \
134     IUnknown_IMETHODS \
135     ICatRegister_METHODS
136 ICOM_DEFINE(ICatRegister,IUnknown)
137 #undef ICOM_INTERFACE
138
139 #ifdef ICOM_CINTERFACE
140 /*** IUnknown methods ***/
141 #define ICatRegister_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
142 #define ICatRegister_AddRef(p)             ICOM_CALL (AddRef,p)
143 #define ICatRegister_Release(p)            ICOM_CALL (Release,p)
144 /*** ICatRegister methods ***/
145 #define ICatRegister_RegisterCategories(p,a,b) ICOM_CALL2(RegisterCategories,p,a,b)
146 #define ICatRegister_UnRegisterCategories(p,a,b) ICOM_CALL2(UnRegisterCategories,p,a,b)
147 #define ICatRegister_RegisterClassImplCategories(p,a,b,c) ICOM_CALL3(RegisterClassImplCategories,p,a,b,c)
148 #define ICatRegister_UnRegisterClassImplCategories(p,a,b,c) ICOM_CALL3(UnRegisterClassImplCategories,p,a,b,c)
149 #define ICatRegister_RegisterClassReqCategories(p,a,b,c) ICOM_CALL3(RegisterClassReqCategories,p,a,b,c)
150 #define ICatRegister_UnRegisterClassReqCategories(p,a,b,c) ICOM_CALL3(UnRegisterClassReqCategories,p,a,b,c)
151 #endif
152
153 /*****************************************************************************
154  * IEnumCATEGORYINFO
155  */
156 #define ICOM_INTERFACE IEnumCATEGORYINFO
157 #define IEnumCATEGORYINFO_METHODS \
158     ICOM_METHOD3(HRESULT, Next, ULONG, celt, CATEGORYINFO*, rgelt, ULONG*, pceltFetched) \
159     ICOM_METHOD1(HRESULT, Skip, ULONG, celt) \
160     ICOM_METHOD (HRESULT, Reset) \
161     ICOM_METHOD1(HRESULT, Clone, IEnumCATEGORYINFO**, ppenum)
162 #define IEnumCATEGORYINFO_IMETHODS \
163     IUnknown_IMETHODS \
164     IEnumCATEGORYINFO_METHODS
165 ICOM_DEFINE(IEnumCATEGORYINFO,IUnknown)
166 #undef ICOM_INTERFACE
167
168 #ifdef ICOM_CINTERFACE
169 /*** IUnknown methods ***/
170 #define IEnumCATEGORYINFO_QueryInterface(p,a,b) ICOM_CALL2(QueryInterface,p,a,b)
171 #define IEnumCATEGORYINFO_AddRef(p)             ICOM_CALL (AddRef,p)
172 #define IEnumCATEGORYINFO_Release(p)            ICOM_CALL (Release,p)
173 /*** IEnumCATEGORYINFO methods ***/
174 #define IEnumCATEGORYINFO_Next(p,a,b,c)         ICOM_CALL3(Next,p,a,b,c)
175 #define IEnumCATEGORYINFO_Skip(p,a)             ICOM_CALL1(Skip,p,a)
176 #define IEnumCATEGORYINFO_Reset(p)              ICOM_CALL(Reset,p)
177 #define IEnumCATEGORYINFO_Clone(p,a)            ICOM_CALL1(Clone,p,a)
178 #endif
179
180 #ifdef __cplusplus
181 } /* extern "C" */
182 #endif /* defined(__cplusplus) */
183
184 #endif /* __WINE_WINE_OBJ_COMCAT_H */