ReactOS 0.4.15-dev-7953-g1f49173
main.c
Go to the documentation of this file.
1/*
2 * Copyright 2009 Hans Leidekker for CodeWeavers
3 *
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.
8 *
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.
13 *
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
17 */
18
19#include <stdarg.h>
20
21#define COBJMACROS
22
23#include "windef.h"
24#include "winbase.h"
25#include "winuser.h"
26#include "initguid.h"
27#include "objbase.h"
28#include "wbemcli.h"
29#include "wmiutils.h"
30#include "rpcproxy.h"
31
32#include "wine/debug.h"
33#include "wmiutils_private.h"
34
36
38
39typedef HRESULT (*fnCreateInstance)( LPVOID *ppObj );
40
41typedef struct
42{
46
48{
49 return CONTAINING_RECORD(iface, wmiutils_cf, IClassFactory_iface);
50}
51
53{
56 {
57 IClassFactory_AddRef( iface );
58 *ppobj = iface;
59 return S_OK;
60 }
61 FIXME("interface %s not implemented\n", debugstr_guid(riid));
62 return E_NOINTERFACE;
63}
64
66{
67 return 2;
68}
69
71{
72 return 1;
73}
74
76 REFIID riid, LPVOID *ppobj )
77{
79 HRESULT r;
80 IUnknown *punk;
81
82 TRACE("%p %s %p\n", pOuter, debugstr_guid(riid), ppobj);
83
84 *ppobj = NULL;
85
86 if (pOuter)
88
89 r = This->pfnCreateInstance( (LPVOID *)&punk );
90 if (FAILED(r))
91 return r;
92
93 r = IUnknown_QueryInterface( punk, riid, ppobj );
94 IUnknown_Release( punk );
95 return r;
96}
97
99{
100 FIXME("(%p)->(%d)\n", iface, dolock);
101 return S_OK;
102}
103
104static const struct IClassFactoryVtbl wmiutils_cf_vtbl =
105{
111};
112
115
117{
118 switch(reason)
119 {
120 case DLL_WINE_PREATTACH:
121 return FALSE; /* prefer native version */
123 instance = hinst;
125 break;
126 }
127 return TRUE;
128}
129
131{
133
134 TRACE("%s %s %p\n", debugstr_guid(rclsid), debugstr_guid(iid), ppv);
135
136 if (IsEqualGUID( rclsid, &CLSID_WbemStatusCode ))
137 {
139 }
140 else if (IsEqualGUID( rclsid, &CLSID_WbemDefPath ))
141 {
143 }
144 if (!cf) return CLASS_E_CLASSNOTAVAILABLE;
145 return IClassFactory_QueryInterface( cf, iid, ppv );
146}
147
148/***********************************************************************
149 * DllCanUnloadNow (WMIUTILS.@)
150 */
152{
153 return S_FALSE;
154}
155
156/***********************************************************************
157 * DllRegisterServer (WMIUTILS.@)
158 */
160{
162}
163
164/***********************************************************************
165 * DllUnregisterServer (WMIUTILS.@)
166 */
168{
170}
#define WINE_DEFAULT_DEBUG_CHANNEL(t)
Definition: precomp.h:23
const GUID IID_IUnknown
const GUID IID_IClassFactory
#define FIXME(fmt,...)
Definition: debug.h:111
#define NULL
Definition: types.h:112
#define TRUE
Definition: types.h:120
#define FALSE
Definition: types.h:117
BOOL WINAPI DllMain(HINSTANCE hInstance, DWORD dwReason, LPVOID lpReserved)
Definition: main.c:26
HRESULT WINAPI DllRegisterServer(void)
Definition: main.c:212
static HINSTANCE instance
Definition: main.c:40
HRESULT WINAPI DllUnregisterServer(void)
Definition: main.c:220
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
Definition: main.c:166
HRESULT WINAPI DllCanUnloadNow(void)
Definition: main.c:204
static IClassFactoryImpl * impl_from_IClassFactory(IClassFactory *iface)
Definition: main.c:63
static WCHAR reason[MAX_STRING_RESOURCE_LEN]
Definition: object.c:1904
#define DLL_PROCESS_ATTACH
Definition: compat.h:131
BOOL WINAPI DisableThreadLibraryCalls(IN HMODULE hLibModule)
Definition: loader.c:85
static const struct IClassFactoryVtbl wmiutils_cf_vtbl
Definition: main.c:104
static HRESULT WINAPI wmiutils_cf_CreateInstance(IClassFactory *iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
Definition: main.c:75
static ULONG WINAPI wmiutils_cf_Release(IClassFactory *iface)
Definition: main.c:70
static ULONG WINAPI wmiutils_cf_AddRef(IClassFactory *iface)
Definition: main.c:65
static HRESULT WINAPI wmiutils_cf_LockServer(IClassFactory *iface, BOOL dolock)
Definition: main.c:98
static wmiutils_cf path_cf
Definition: main.c:114
static HRESULT WINAPI wmiutils_cf_QueryInterface(IClassFactory *iface, REFIID riid, LPVOID *ppobj)
Definition: main.c:52
static wmiutils_cf status_code_cf
Definition: main.c:113
HRESULT WbemPath_create(LPVOID *ppObj)
Definition: path.c:1275
unsigned int BOOL
Definition: ntddk_ex.h:94
unsigned long DWORD
Definition: ntddk_ex.h:95
GLdouble GLdouble GLdouble r
Definition: gl.h:2055
HRESULT(* fnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj)
Definition: hnetcfg.c:37
REFIID riid
Definition: atlbase.h:39
REFIID LPVOID * ppv
Definition: atlbase.h:39
#define S_OK
Definition: intsafe.h:52
#define FAILED(hr)
Definition: intsafe.h:51
#define debugstr_guid
Definition: kernel32.h:35
static HINSTANCE hinst
Definition: edit.c:551
static LPUNKNOWN
Definition: ndr_ole.c:49
#define IsEqualGUID(rguid1, rguid2)
Definition: guiddef.h:147
#define REFIID
Definition: guiddef.h:118
#define REFCLSID
Definition: guiddef.h:117
HRESULT __wine_unregister_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:110
HRESULT __wine_register_resources(HMODULE module) DECLSPEC_HIDDEN
Definition: register.c:98
#define TRACE(s)
Definition: solgame.cpp:4
HRESULT WbemStatusCodeText_create(LPVOID *ppObj)
Definition: statuscode.c:133
IClassFactory IClassFactory_iface
Definition: main.c:43
fnCreateInstance pfnCreateInstance
Definition: main.c:44
#define CONTAINING_RECORD(address, type, field)
Definition: typedefs.h:260
uint32_t ULONG
Definition: typedefs.h:59
#define HRESULT
Definition: msvc.h:7
#define WINAPI
Definition: msvc.h:6
#define S_FALSE
Definition: winerror.h:2357
#define E_NOINTERFACE
Definition: winerror.h:2364
#define CLASS_E_NOAGGREGATION
Definition: winerror.h:2662
#define CLASS_E_CLASSNOTAVAILABLE
Definition: winerror.h:2663