2 * Copyright 2009 Hans Leidekker for CodeWeavers
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2.1 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
32 #include "wine/debug.h"
33 #include "wmiutils_private.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(wmiutils
);
37 typedef HRESULT (*fnCreateInstance
)( LPVOID
*ppObj
);
41 IClassFactory IClassFactory_iface
;
42 fnCreateInstance pfnCreateInstance
;
45 static inline wmiutils_cf
*impl_from_IClassFactory( IClassFactory
*iface
)
47 return CONTAINING_RECORD(iface
, wmiutils_cf
, IClassFactory_iface
);
50 static HRESULT WINAPI
wmiutils_cf_QueryInterface( IClassFactory
*iface
, REFIID riid
, LPVOID
*ppobj
)
52 if (IsEqualGUID(riid
, &IID_IUnknown
) ||
53 IsEqualGUID(riid
, &IID_IClassFactory
))
55 IClassFactory_AddRef( iface
);
59 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
63 static ULONG WINAPI
wmiutils_cf_AddRef( IClassFactory
*iface
)
68 static ULONG WINAPI
wmiutils_cf_Release( IClassFactory
*iface
)
73 static HRESULT WINAPI
wmiutils_cf_CreateInstance( IClassFactory
*iface
, LPUNKNOWN pOuter
,
74 REFIID riid
, LPVOID
*ppobj
)
76 wmiutils_cf
*This
= impl_from_IClassFactory( iface
);
80 TRACE("%p %s %p\n", pOuter
, debugstr_guid(riid
), ppobj
);
85 return CLASS_E_NOAGGREGATION
;
87 r
= This
->pfnCreateInstance( (LPVOID
*)&punk
);
91 r
= IUnknown_QueryInterface( punk
, riid
, ppobj
);
92 IUnknown_Release( punk
);
96 static HRESULT WINAPI
wmiutils_cf_LockServer( IClassFactory
*iface
, BOOL dolock
)
98 FIXME("(%p)->(%d)\n", iface
, dolock
);
102 static const struct IClassFactoryVtbl wmiutils_cf_vtbl
=
104 wmiutils_cf_QueryInterface
,
107 wmiutils_cf_CreateInstance
,
108 wmiutils_cf_LockServer
111 static wmiutils_cf status_code_cf
= { { &wmiutils_cf_vtbl
}, WbemStatusCodeText_create
};
112 static wmiutils_cf path_cf
= { { &wmiutils_cf_vtbl
}, WbemPath_create
};
114 HRESULT WINAPI
DllGetClassObject( REFCLSID rclsid
, REFIID iid
, LPVOID
*ppv
)
116 IClassFactory
*cf
= NULL
;
118 TRACE("%s %s %p\n", debugstr_guid(rclsid
), debugstr_guid(iid
), ppv
);
120 if (IsEqualGUID( rclsid
, &CLSID_WbemStatusCode
))
122 cf
= &status_code_cf
.IClassFactory_iface
;
124 else if (IsEqualGUID( rclsid
, &CLSID_WbemDefPath
))
126 cf
= &path_cf
.IClassFactory_iface
;
128 if (!cf
) return CLASS_E_CLASSNOTAVAILABLE
;
129 return IClassFactory_QueryInterface( cf
, iid
, ppv
);