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
;
45 /* For the moment, do nothing here. */
46 BOOL WINAPI
DllMain(HINSTANCE hInstDLL
, DWORD fdwReason
, LPVOID lpv
)
49 case DLL_PROCESS_ATTACH
:
51 DisableThreadLibraryCalls(hInstDLL
);
57 /******************************************************************************
58 * DirectX File ClassFactory
61 IClassFactory IClassFactory_iface
;
64 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
67 static inline IClassFactoryImpl
*impl_from_IClassFactory(IClassFactory
*iface
)
69 return CONTAINING_RECORD(iface
, IClassFactoryImpl
, IClassFactory_iface
);
72 struct object_creation_info
75 HRESULT (*pfnCreateInstance
)(IUnknown
*pUnkOuter
, LPVOID
*ppObj
);
78 static const struct object_creation_info object_creation
[] =
80 { &CLSID_CDirectXFile
, IDirectXFileImpl_Create
},
83 static HRESULT WINAPI
XFCF_QueryInterface(LPCLASSFACTORY iface
,REFIID riid
, LPVOID
*ppobj
)
85 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
87 if (IsEqualGUID(riid
, &IID_IUnknown
)
88 || IsEqualGUID(riid
, &IID_IClassFactory
))
90 IClassFactory_AddRef(iface
);
91 *ppobj
= &This
->IClassFactory_iface
;
95 WARN("(%p)->(%s,%p),not found\n",This
,debugstr_guid(riid
),ppobj
);
99 static ULONG WINAPI
XFCF_AddRef(LPCLASSFACTORY iface
)
101 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
102 return InterlockedIncrement(&This
->ref
);
105 static ULONG WINAPI
XFCF_Release(LPCLASSFACTORY iface
)
107 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
109 ULONG ref
= InterlockedDecrement(&This
->ref
);
112 HeapFree(GetProcessHeap(), 0, This
);
117 static HRESULT WINAPI
XFCF_CreateInstance(LPCLASSFACTORY iface
, LPUNKNOWN pOuter
, REFIID riid
, LPVOID
*ppobj
)
119 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
123 TRACE("(%p)->(%p,%s,%p)\n",This
,pOuter
,debugstr_guid(riid
),ppobj
);
126 hres
= This
->pfnCreateInstance(pOuter
, (LPVOID
*) &punk
);
127 if (SUCCEEDED(hres
)) {
128 hres
= IUnknown_QueryInterface(punk
, riid
, ppobj
);
129 IUnknown_Release(punk
);
134 static HRESULT WINAPI
XFCF_LockServer(LPCLASSFACTORY iface
, BOOL dolock
)
136 IClassFactoryImpl
*This
= impl_from_IClassFactory(iface
);
137 FIXME("(%p)->(%d), stub!\n",This
,dolock
);
141 static const IClassFactoryVtbl XFCF_Vtbl
=
150 /***********************************************************************
151 * DirectXFileCreate (D3DXOF.@)
153 HRESULT WINAPI
DirectXFileCreate(LPDIRECTXFILE
* lplpDirectXFile
)
157 TRACE("(%p)\n", lplpDirectXFile
);
159 if (!lplpDirectXFile
)
160 return DXFILEERR_BADVALUE
;
162 hr
= IDirectXFileImpl_Create(NULL
, (LPVOID
)lplpDirectXFile
);
165 return DXFILEERR_BADALLOC
;
170 /*******************************************************************************
171 * DllGetClassObject [D3DXOF.@]
172 * Retrieves class object from a DLL object
175 * Docs say returns STDAPI
178 * rclsid [I] CLSID for the class object
179 * riid [I] Reference to identifier of interface for class object
180 * ppv [O] Address of variable to receive interface pointer for riid
184 * Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
187 HRESULT WINAPI
DllGetClassObject(REFCLSID rclsid
, REFIID riid
, LPVOID
*ppv
)
190 IClassFactoryImpl
*factory
;
192 TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid
), debugstr_guid(riid
), ppv
);
194 if ( !IsEqualGUID( &IID_IClassFactory
, riid
)
195 && ! IsEqualGUID( &IID_IUnknown
, riid
) )
196 return E_NOINTERFACE
;
198 for (i
= 0; i
< ARRAY_SIZE(object_creation
); i
++)
200 if (IsEqualGUID(object_creation
[i
].clsid
, rclsid
))
204 if (i
== ARRAY_SIZE(object_creation
))
206 FIXME("%s: no class found.\n", debugstr_guid(rclsid
));
207 return CLASS_E_CLASSNOTAVAILABLE
;
210 factory
= HeapAlloc(GetProcessHeap(), 0, sizeof(*factory
));
211 if (factory
== NULL
) return E_OUTOFMEMORY
;
213 factory
->IClassFactory_iface
.lpVtbl
= &XFCF_Vtbl
;
216 factory
->pfnCreateInstance
= object_creation
[i
].pfnCreateInstance
;
218 *ppv
= &(factory
->IClassFactory_iface
);
222 /***********************************************************************
223 * DllCanUnloadNow (D3DXOF.@)
225 HRESULT WINAPI
DllCanUnloadNow(void)
230 /***********************************************************************
231 * DllRegisterServer (D3DXOF.@)
233 HRESULT WINAPI
DllRegisterServer(void)
235 return __wine_register_resources( instance
);
238 /***********************************************************************
239 * DllUnregisterServer (D3DXOF.@)
241 HRESULT WINAPI
DllUnregisterServer(void)
243 return __wine_unregister_resources( instance
);