2 * DirectX Files Functions (D3DXOF.DLL)
4 * Copyright 2004 Christian Costa
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2.1 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
36 #include "d3dxof_private.h"
39 #include "wine/debug.h"
41 WINE_DEFAULT_DEBUG_CHANNEL(d3dxof);
43 static HINSTANCE instance;
44 static LONG dll_ref = 0;
46 /* For the moment, do nothing here. */
47 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
50 case DLL_PROCESS_ATTACH:
52 DisableThreadLibraryCalls(hInstDLL);
58 /******************************************************************************
59 * DirectX File ClassFactory
62 IClassFactory IClassFactory_iface;
65 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
68 static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
70 return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
73 struct object_creation_info
76 HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
79 static const struct object_creation_info object_creation[] =
81 { &CLSID_CDirectXFile, IDirectXFileImpl_Create },
84 static HRESULT WINAPI XFCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid, LPVOID *ppobj)
86 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
88 if (IsEqualGUID(riid, &IID_IUnknown)
89 || IsEqualGUID(riid, &IID_IClassFactory))
91 IClassFactory_AddRef(iface);
92 *ppobj = &This->IClassFactory_iface;
96 WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
100 static ULONG WINAPI XFCF_AddRef(LPCLASSFACTORY iface)
102 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
103 return InterlockedIncrement(&This->ref);
106 static ULONG WINAPI XFCF_Release(LPCLASSFACTORY iface)
108 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
110 ULONG ref = InterlockedDecrement(&This->ref);
113 HeapFree(GetProcessHeap(), 0, This);
118 static HRESULT WINAPI XFCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
120 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
124 TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
127 hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
128 if (SUCCEEDED(hres)) {
129 hres = IUnknown_QueryInterface(punk, riid, ppobj);
130 IUnknown_Release(punk);
135 static HRESULT WINAPI XFCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
137 IClassFactoryImpl *This = impl_from_IClassFactory(iface);
138 FIXME("(%p)->(%d),stub!\n",This,dolock);
142 static const IClassFactoryVtbl XFCF_Vtbl =
151 /***********************************************************************
152 * DirectXFileCreate (D3DXOF.@)
154 HRESULT WINAPI DirectXFileCreate(LPDIRECTXFILE* lplpDirectXFile)
158 TRACE("(%p)\n", lplpDirectXFile);
160 if (!lplpDirectXFile)
161 return DXFILEERR_BADVALUE;
163 hr = IDirectXFileImpl_Create(NULL, (LPVOID)lplpDirectXFile);
166 return DXFILEERR_BADALLOC;
171 /*******************************************************************************
172 * DllGetClassObject [D3DXOF.@]
173 * Retrieves class object from a DLL object
176 * Docs say returns STDAPI
179 * rclsid [I] CLSID for the class object
180 * riid [I] Reference to identifier of interface for class object
181 * ppv [O] Address of variable to receive interface pointer for riid
185 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
188 HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
191 IClassFactoryImpl *factory;
193 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
195 if ( !IsEqualGUID( &IID_IClassFactory, riid )
196 && ! IsEqualGUID( &IID_IUnknown, riid) )
197 return E_NOINTERFACE;
199 for (i=0; i < sizeof(object_creation)/sizeof(object_creation[0]); i++)
201 if (IsEqualGUID(object_creation[i].clsid, rclsid))
205 if (i == sizeof(object_creation)/sizeof(object_creation[0]))
207 FIXME("%s: no class found.\n", debugstr_guid(rclsid));
208 return CLASS_E_CLASSNOTAVAILABLE;
211 factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
212 if (factory == NULL) return E_OUTOFMEMORY;
214 factory->IClassFactory_iface.lpVtbl = &XFCF_Vtbl;
217 factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
219 *ppv = &(factory->IClassFactory_iface);
223 /***********************************************************************
224 * DllCanUnloadNow (D3DXOF.@)
226 HRESULT WINAPI DllCanUnloadNow(void)
228 return dll_ref != 0 ? S_FALSE : S_OK;
231 /***********************************************************************
232 * DllRegisterServer (D3DXOF.@)
234 HRESULT WINAPI DllRegisterServer(void)
236 return __wine_register_resources( instance );
239 /***********************************************************************
240 * DllUnregisterServer (D3DXOF.@)
242 HRESULT WINAPI DllUnregisterServer(void)
244 return __wine_unregister_resources( instance );