ntdll: Implement NtCreateDebugObject().
[wine.git] / dlls / dx8vb / main.c
blob7dbe47d25af72fd18b65f2fcb04a3bf6f9d144aa
1 /*
2 * Copyright 2017 Fabian Maurer
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 #define COBJMACROS
22 #include <stdarg.h>
23 #include <string.h>
25 #include "windef.h"
26 #include "winbase.h"
27 #include "winuser.h"
28 #include "winreg.h"
30 #include "ole2.h"
31 #include "rpcproxy.h"
33 #include "unknwn.h"
35 #include "wine/debug.h"
37 WINE_DEFAULT_DEBUG_CHANNEL(dx8vb);
39 static HINSTANCE instance_dx8vb;
41 BOOL WINAPI DllMain(HINSTANCE instance, DWORD reason, LPVOID reserved)
43 TRACE("(0x%p, %d, %p)\n", instance, reason, reserved);
45 switch (reason)
47 case DLL_WINE_PREATTACH:
48 return FALSE; /* prefer native version */
49 case DLL_PROCESS_ATTACH:
50 DisableThreadLibraryCalls(instance);
51 instance_dx8vb = instance;
52 break;
55 return TRUE;
58 typedef struct {
59 IClassFactory IClassFactory_iface;
61 LONG ref;
62 HRESULT (*pfnCreateInstance)(IUnknown *unk_outer, void **ppobj);
63 } IClassFactoryImpl;
65 static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
67 return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
70 struct object_creation_info
72 const CLSID *clsid;
73 HRESULT (*pfnCreateInstance)(IUnknown *unk_outer, void **ppobj);
76 static const struct object_creation_info object_creation[] =
78 { &GUID_NULL, 0 },
81 static HRESULT WINAPI classfactory_QueryInterface(IClassFactory *iface, REFIID riid, void **ppobj)
83 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
85 if (IsEqualGUID(riid, &IID_IUnknown)
86 || IsEqualGUID(riid, &IID_IClassFactory))
88 IClassFactory_AddRef(iface);
89 *ppobj = &This->IClassFactory_iface;
90 return S_OK;
93 WARN("(%p)->(%s,%p),not found\n", This, debugstr_guid(riid), ppobj);
94 return E_NOINTERFACE;
97 static ULONG WINAPI classfactory_AddRef(IClassFactory *iface)
99 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
100 return InterlockedIncrement(&This->ref);
103 static ULONG WINAPI classfactory_Release(IClassFactory *iface)
105 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
106 ULONG ref = InterlockedDecrement(&This->ref);
108 if (ref == 0)
109 HeapFree(GetProcessHeap(), 0, This);
111 return ref;
114 static HRESULT WINAPI classfactory_CreateInstance(IClassFactory *iface, IUnknown *outer_unk, REFIID riid, void **ppobj)
116 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
117 HRESULT hres;
118 IUnknown *unk;
120 TRACE("(%p)->(%p,%s,%p)\n", This, outer_unk, debugstr_guid(riid), ppobj);
122 *ppobj = NULL;
123 hres = This->pfnCreateInstance(outer_unk, (void **) &unk);
124 if (SUCCEEDED(hres))
126 hres = IUnknown_QueryInterface(unk, riid, ppobj);
127 IUnknown_Release(unk);
129 return hres;
132 static HRESULT WINAPI classfactory_LockServer(IClassFactory *iface, BOOL dolock)
134 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
135 FIXME("(%p)->(%d), stub!\n", This, dolock);
136 return S_OK;
139 static const IClassFactoryVtbl classfactory_Vtbl =
141 classfactory_QueryInterface,
142 classfactory_AddRef,
143 classfactory_Release,
144 classfactory_CreateInstance,
145 classfactory_LockServer
148 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, void **ppv)
150 unsigned int i;
151 IClassFactoryImpl *factory;
153 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
155 if (!IsEqualGUID(&IID_IClassFactory, riid)
156 && !IsEqualGUID( &IID_IUnknown, riid))
157 return E_NOINTERFACE;
159 for (i = 0; i < ARRAY_SIZE(object_creation); i++)
161 if (IsEqualGUID(object_creation[i].clsid, rclsid))
162 break;
165 if (i == ARRAY_SIZE(object_creation))
167 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
168 return CLASS_E_CLASSNOTAVAILABLE;
171 factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
172 if (factory == NULL)
173 return E_OUTOFMEMORY;
175 factory->IClassFactory_iface.lpVtbl = &classfactory_Vtbl;
176 factory->ref = 1;
178 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
180 *ppv = &factory->IClassFactory_iface;
181 return S_OK;
184 HRESULT WINAPI DllCanUnloadNow(void)
186 return S_FALSE;
189 HRESULT WINAPI DllRegisterServer(void)
191 return __wine_register_resources(instance_dx8vb);
194 HRESULT WINAPI DllUnregisterServer(void)
196 return __wine_unregister_resources(instance_dx8vb);