comcat: Remove const from COMCAT Manager.

This commit is contained in:
Marcus Meissner 2006-12-08 09:35:08 +01:00 committed by Alexandre Julliard
parent c231fd6872
commit ccae172e1d
2 changed files with 2 additions and 2 deletions

View File

@ -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;

View File

@ -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,