devenum: Removed useless structs.

This commit is contained in:
Jacek Caban 2012-04-04 10:43:12 +02:00 committed by Alexandre Julliard
parent 6b0875a67e
commit 9940756d21
3 changed files with 4 additions and 14 deletions

View File

@ -519,7 +519,7 @@ static const ICreateDevEnumVtbl ICreateDevEnum_Vtbl =
/**********************************************************************
* static CreateDevEnum instance
*/
CreateDevEnumImpl DEVENUM_CreateDevEnum = { { &ICreateDevEnum_Vtbl } };
ICreateDevEnum DEVENUM_CreateDevEnum = { &ICreateDevEnum_Vtbl };
/**********************************************************************
* DEVENUM_CreateAMCategoryKey (INTERNAL)

View File

@ -60,16 +60,6 @@ typedef struct
IClassFactory IClassFactory_iface;
} ClassFactoryImpl;
typedef struct
{
ICreateDevEnum ICreateDevEnum_iface;
} CreateDevEnumImpl;
typedef struct
{
IParseDisplayName IParseDisplayName_iface;
} ParseDisplayNameImpl;
typedef struct
{
IMoniker IMoniker_iface;
@ -81,8 +71,8 @@ MediaCatMoniker * DEVENUM_IMediaCatMoniker_Construct(void) DECLSPEC_HIDDEN;
HRESULT DEVENUM_IEnumMoniker_Construct(HKEY hkey, IEnumMoniker ** ppEnumMoniker) DECLSPEC_HIDDEN;
extern ClassFactoryImpl DEVENUM_ClassFactory DECLSPEC_HIDDEN;
extern CreateDevEnumImpl DEVENUM_CreateDevEnum DECLSPEC_HIDDEN;
extern ParseDisplayNameImpl DEVENUM_ParseDisplayName DECLSPEC_HIDDEN;
extern ICreateDevEnum DEVENUM_CreateDevEnum DECLSPEC_HIDDEN;
extern IParseDisplayName DEVENUM_ParseDisplayName DECLSPEC_HIDDEN;
/**********************************************************************
* Private helper function to get AM filter category key location

View File

@ -153,4 +153,4 @@ static const IParseDisplayNameVtbl IParseDisplayName_Vtbl =
};
/* The one instance of this class */
ParseDisplayNameImpl DEVENUM_ParseDisplayName = { { &IParseDisplayName_Vtbl } };
IParseDisplayName DEVENUM_ParseDisplayName = { &IParseDisplayName_Vtbl };