vbscript: Added support for title and type arguments of MsgBox.
[wine.git] / dlls / wbemdisp / main.c
blobaf99975862e0158dea925c9d011ccee2f469cecd
1 /*
2 * Copyright 2013 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
19 #include "config.h"
20 #include <stdarg.h>
22 #define COBJMACROS
24 #include "windef.h"
25 #include "winbase.h"
26 #include "initguid.h"
27 #include "objbase.h"
28 #include "wbemdisp.h"
29 #include "rpcproxy.h"
31 #include "wine/debug.h"
32 #include "wbemdisp_private.h"
33 #include "wbemdisp_classes.h"
35 WINE_DEFAULT_DEBUG_CHANNEL(wbemdisp);
37 static HINSTANCE instance;
39 static HRESULT WINAPI WinMGMTS_QueryInterface(IParseDisplayName *iface, REFIID riid, void **ppv)
41 if(IsEqualGUID(riid, &IID_IUnknown)) {
42 TRACE("(IID_IUnknown %p)\n", ppv);
43 *ppv = iface;
44 }else if(IsEqualGUID(riid, &IID_IParseDisplayName)) {
45 TRACE("(IID_IParseDisplayName %p)\n", ppv);
46 *ppv = iface;
47 }else {
48 WARN("Unsupported riid %s\n", debugstr_guid(riid));
49 *ppv = NULL;
50 return E_NOINTERFACE;
53 IUnknown_AddRef((IUnknown*)*ppv);
54 return S_OK;
57 static ULONG WINAPI WinMGMTS_AddRef(IParseDisplayName *iface)
59 return 2;
62 static ULONG WINAPI WinMGMTS_Release(IParseDisplayName *iface)
64 return 1;
67 static HRESULT WINAPI WinMGMTS_ParseDisplayName(IParseDisplayName *iface, IBindCtx *pbc, LPOLESTR pszDisplayName,
68 ULONG *pchEaten, IMoniker **ppmkOut)
70 FIXME("(%p %s %p %p)\n", pbc, debugstr_w(pszDisplayName), pchEaten, ppmkOut);
71 return E_NOTIMPL;
74 static const IParseDisplayNameVtbl WinMGMTSVtbl = {
75 WinMGMTS_QueryInterface,
76 WinMGMTS_AddRef,
77 WinMGMTS_Release,
78 WinMGMTS_ParseDisplayName
81 static IParseDisplayName winmgmts = { &WinMGMTSVtbl };
83 static HRESULT WinMGMTS_create(void **ppv)
85 *ppv = &winmgmts;
86 return S_OK;
89 struct factory
91 IClassFactory IClassFactory_iface;
92 HRESULT (*fnCreateInstance)( LPVOID * );
95 static inline struct factory *impl_from_IClassFactory( IClassFactory *iface )
97 return CONTAINING_RECORD( iface, struct factory, IClassFactory_iface );
100 static HRESULT WINAPI factory_QueryInterface( IClassFactory *iface, REFIID riid, LPVOID *obj )
102 if (IsEqualGUID( riid, &IID_IUnknown ) || IsEqualGUID( riid, &IID_IClassFactory ))
104 IClassFactory_AddRef( iface );
105 *obj = iface;
106 return S_OK;
108 FIXME( "interface %s not implemented\n", debugstr_guid(riid) );
109 return E_NOINTERFACE;
112 static ULONG WINAPI factory_AddRef( IClassFactory *iface )
114 return 2;
117 static ULONG WINAPI factory_Release( IClassFactory *iface )
119 return 1;
122 static HRESULT WINAPI factory_CreateInstance( IClassFactory *iface, LPUNKNOWN outer, REFIID riid,
123 LPVOID *obj )
125 struct factory *factory = impl_from_IClassFactory( iface );
126 IUnknown *unk;
127 HRESULT hr;
129 TRACE( "%p, %s, %p\n", outer, debugstr_guid(riid), obj );
131 *obj = NULL;
132 if (outer) return CLASS_E_NOAGGREGATION;
134 hr = factory->fnCreateInstance( (LPVOID *)&unk );
135 if (FAILED( hr ))
136 return hr;
138 hr = IUnknown_QueryInterface( unk, riid, obj );
139 IUnknown_Release( unk );
140 return hr;
143 static HRESULT WINAPI factory_LockServer( IClassFactory *iface, BOOL lock )
145 FIXME( "%p, %d\n", iface, lock );
146 return S_OK;
149 static const struct IClassFactoryVtbl factory_vtbl =
151 factory_QueryInterface,
152 factory_AddRef,
153 factory_Release,
154 factory_CreateInstance,
155 factory_LockServer
158 static struct factory swbem_locator_cf = { { &factory_vtbl }, SWbemLocator_create };
159 static struct factory winmgmts_cf = { { &factory_vtbl }, WinMGMTS_create };
161 BOOL WINAPI DllMain( HINSTANCE hinst, DWORD reason, LPVOID reserved )
164 switch (reason)
166 case DLL_WINE_PREATTACH:
167 return FALSE; /* prefer native version */
168 case DLL_PROCESS_ATTACH:
169 instance = hinst;
170 DisableThreadLibraryCalls( hinst );
171 break;
173 return TRUE;
176 HRESULT WINAPI DllGetClassObject( REFCLSID rclsid, REFIID iid, LPVOID *obj )
178 IClassFactory *cf = NULL;
180 TRACE( "%s, %s, %p\n", debugstr_guid(rclsid), debugstr_guid(iid), obj );
182 if (IsEqualGUID( rclsid, &CLSID_SWbemLocator ))
183 cf = &swbem_locator_cf.IClassFactory_iface;
184 else if (IsEqualGUID( rclsid, &CLSID_WinMGMTS ))
185 cf = &winmgmts_cf.IClassFactory_iface;
186 else
187 return CLASS_E_CLASSNOTAVAILABLE;
189 return IClassFactory_QueryInterface( cf, iid, obj );
192 /***********************************************************************
193 * DllCanUnloadNow (WBEMDISP.@)
195 HRESULT WINAPI DllCanUnloadNow(void)
197 return S_FALSE;
200 /***********************************************************************
201 * DllRegisterServer (WBEMDISP.@)
203 HRESULT WINAPI DllRegisterServer(void)
205 return __wine_register_resources( instance );
208 /***********************************************************************
209 * DllUnregisterServer (WBEMDISP.@)
211 HRESULT WINAPI DllUnregisterServer(void)
213 return __wine_unregister_resources( instance );