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
30 #include "wine/debug.h"
31 #include "wine/unicode.h"
32 #include "wbemprox_private.h"
34 WINE_DEFAULT_DEBUG_CHANNEL(wbemprox
);
38 IWbemLocator IWbemLocator_iface
;
42 static inline wbem_locator
*impl_from_IWbemLocator( IWbemLocator
*iface
)
44 return CONTAINING_RECORD(iface
, wbem_locator
, IWbemLocator_iface
);
47 static ULONG WINAPI
wbem_locator_AddRef(
50 wbem_locator
*wl
= impl_from_IWbemLocator( iface
);
51 return InterlockedIncrement( &wl
->refs
);
54 static ULONG WINAPI
wbem_locator_Release(
57 wbem_locator
*wl
= impl_from_IWbemLocator( iface
);
58 LONG refs
= InterlockedDecrement( &wl
->refs
);
61 TRACE("destroying %p\n", wl
);
62 HeapFree( GetProcessHeap(), 0, wl
);
67 static HRESULT WINAPI
wbem_locator_QueryInterface(
72 wbem_locator
*This
= impl_from_IWbemLocator( iface
);
74 TRACE("%p %s %p\n", This
, debugstr_guid( riid
), ppvObject
);
76 if ( IsEqualGUID( riid
, &IID_IWbemLocator
) ||
77 IsEqualGUID( riid
, &IID_IUnknown
) )
83 FIXME("interface %s not implemented\n", debugstr_guid(riid
));
86 IWbemLocator_AddRef( iface
);
90 static HRESULT WINAPI
wbem_locator_ConnectServer(
92 const BSTR NetworkResource
,
99 IWbemServices
**ppNamespace
)
101 FIXME("%p, %s, %s, %s, %s, 0x%08x, %s, %p, %p)\n", iface
, debugstr_w(NetworkResource
), debugstr_w(User
),
102 debugstr_w(Password
), debugstr_w(Locale
), SecurityFlags
, debugstr_w(Authority
), pCtx
, ppNamespace
);
103 return WBEM_E_FAILED
;
106 static const IWbemLocatorVtbl wbem_locator_vtbl
=
108 wbem_locator_QueryInterface
,
110 wbem_locator_Release
,
111 wbem_locator_ConnectServer
114 HRESULT
WbemLocator_create( IUnknown
*pUnkOuter
, LPVOID
*ppObj
)
118 TRACE("(%p,%p)\n", pUnkOuter
, ppObj
);
120 wl
= HeapAlloc( GetProcessHeap(), 0, sizeof(*wl
) );
121 if (!wl
) return E_OUTOFMEMORY
;
123 wl
->IWbemLocator_iface
.lpVtbl
= &wbem_locator_vtbl
;
126 *ppObj
= &wl
->IWbemLocator_iface
;
128 TRACE("returning iface %p\n", *ppObj
);