comcat: Remove const from COMCAT Manager.
This commit is contained in:
parent
c231fd6872
commit
ccae172e1d
|
@ -63,7 +63,7 @@ typedef struct
|
||||||
LONG ref;
|
LONG ref;
|
||||||
} ComCatMgrImpl;
|
} ComCatMgrImpl;
|
||||||
|
|
||||||
extern const ComCatMgrImpl COMCAT_ComCatMgr;
|
extern ComCatMgrImpl COMCAT_ComCatMgr;
|
||||||
extern const ICatRegisterVtbl COMCAT_ICatRegister_Vtbl;
|
extern const ICatRegisterVtbl COMCAT_ICatRegister_Vtbl;
|
||||||
extern const ICatInformationVtbl COMCAT_ICatInformation_Vtbl;
|
extern const ICatInformationVtbl COMCAT_ICatInformation_Vtbl;
|
||||||
|
|
||||||
|
|
|
@ -111,7 +111,7 @@ static const IUnknownVtbl COMCAT_IUnknown_Vtbl =
|
||||||
/**********************************************************************
|
/**********************************************************************
|
||||||
* static ComCatMgr instance
|
* static ComCatMgr instance
|
||||||
*/
|
*/
|
||||||
const ComCatMgrImpl COMCAT_ComCatMgr =
|
ComCatMgrImpl COMCAT_ComCatMgr =
|
||||||
{
|
{
|
||||||
&COMCAT_IUnknown_Vtbl,
|
&COMCAT_IUnknown_Vtbl,
|
||||||
&COMCAT_ICatRegister_Vtbl,
|
&COMCAT_ICatRegister_Vtbl,
|
||||||
|
|
Loading…
Reference in New Issue