Sweden-Number/dlls/d3dxof/main.c

207 lines
5.3 KiB
C
Raw Normal View History

2004-06-03 02:03:23 +02:00
/*
* DirectX Files Functions (D3DXOF.DLL)
*
* Copyright 2004 Christian Costa
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2.1 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
2004-06-03 02:03:23 +02:00
*/
#include <stdarg.h>
#include <string.h>
#define COBJMACROS
2004-06-03 02:03:23 +02:00
#include "windef.h"
#include "winbase.h"
#include "winuser.h"
#include "winreg.h"
#include "winerror.h"
#include "ole2.h"
#include "rpcproxy.h"
2004-06-03 02:03:23 +02:00
#include "uuids.h"
#include "d3dxof_private.h"
#include "dxfile.h"
#include "wine/debug.h"
WINE_DEFAULT_DEBUG_CHANNEL(d3dxof);
/******************************************************************************
* DirectX File ClassFactory
*/
typedef struct {
2011-05-27 03:20:55 +02:00
IClassFactory IClassFactory_iface;
2004-06-03 02:03:23 +02:00
2005-07-12 19:03:19 +02:00
LONG ref;
2004-06-03 02:03:23 +02:00
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
} IClassFactoryImpl;
2011-05-27 03:20:55 +02:00
static inline IClassFactoryImpl *impl_from_IClassFactory(IClassFactory *iface)
{
return CONTAINING_RECORD(iface, IClassFactoryImpl, IClassFactory_iface);
}
2004-06-03 02:03:23 +02:00
struct object_creation_info
{
const CLSID *clsid;
HRESULT (*pfnCreateInstance)(IUnknown *pUnkOuter, LPVOID *ppObj);
};
static const struct object_creation_info object_creation[] =
{
{ &CLSID_CDirectXFile, IDirectXFileImpl_Create },
2004-06-03 02:03:23 +02:00
};
static HRESULT WINAPI XFCF_QueryInterface(LPCLASSFACTORY iface,REFIID riid, LPVOID *ppobj)
{
2011-05-27 03:20:55 +02:00
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
2004-06-03 02:03:23 +02:00
if (IsEqualGUID(riid, &IID_IUnknown)
|| IsEqualGUID(riid, &IID_IClassFactory))
{
IClassFactory_AddRef(iface);
2011-05-27 03:20:55 +02:00
*ppobj = &This->IClassFactory_iface;
2004-06-03 02:03:23 +02:00
return S_OK;
}
WARN("(%p)->(%s,%p),not found\n",This,debugstr_guid(riid),ppobj);
return E_NOINTERFACE;
}
static ULONG WINAPI XFCF_AddRef(LPCLASSFACTORY iface)
{
2011-05-27 03:20:55 +02:00
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
return InterlockedIncrement(&This->ref);
2004-06-03 02:03:23 +02:00
}
static ULONG WINAPI XFCF_Release(LPCLASSFACTORY iface)
{
2011-05-27 03:20:55 +02:00
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
2004-06-03 02:03:23 +02:00
ULONG ref = InterlockedDecrement(&This->ref);
2004-06-03 02:03:23 +02:00
if (ref == 0)
HeapFree(GetProcessHeap(), 0, This);
return ref;
}
static HRESULT WINAPI XFCF_CreateInstance(LPCLASSFACTORY iface, LPUNKNOWN pOuter, REFIID riid, LPVOID *ppobj)
{
2011-05-27 03:20:55 +02:00
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
2004-06-03 02:03:23 +02:00
HRESULT hres;
LPUNKNOWN punk;
TRACE("(%p)->(%p,%s,%p)\n",This,pOuter,debugstr_guid(riid),ppobj);
*ppobj = NULL;
2004-06-03 02:03:23 +02:00
hres = This->pfnCreateInstance(pOuter, (LPVOID *) &punk);
if (SUCCEEDED(hres)) {
hres = IUnknown_QueryInterface(punk, riid, ppobj);
IUnknown_Release(punk);
2004-06-03 02:03:23 +02:00
}
return hres;
}
static HRESULT WINAPI XFCF_LockServer(LPCLASSFACTORY iface, BOOL dolock)
{
2011-05-27 03:20:55 +02:00
IClassFactoryImpl *This = impl_from_IClassFactory(iface);
2014-01-22 12:25:54 +01:00
FIXME("(%p)->(%d), stub!\n",This,dolock);
2004-06-03 02:03:23 +02:00
return S_OK;
}
static const IClassFactoryVtbl XFCF_Vtbl =
2004-06-03 02:03:23 +02:00
{
XFCF_QueryInterface,
XFCF_AddRef,
XFCF_Release,
XFCF_CreateInstance,
XFCF_LockServer
};
/***********************************************************************
* DirectXFileCreate (D3DXOF.@)
*/
HRESULT WINAPI DirectXFileCreate(LPDIRECTXFILE* lplpDirectXFile)
{
HRESULT hr;
TRACE("(%p)\n", lplpDirectXFile);
2004-06-03 02:03:23 +02:00
if (!lplpDirectXFile)
return DXFILEERR_BADVALUE;
hr = IDirectXFileImpl_Create(NULL, (LPVOID)lplpDirectXFile);
2004-06-03 02:03:23 +02:00
if (FAILED(hr))
return DXFILEERR_BADALLOC;
return S_OK;
}
/*******************************************************************************
* DllGetClassObject [D3DXOF.@]
* Retrieves class object from a DLL object
*
* NOTES
* Docs say returns STDAPI
*
* PARAMS
* rclsid [I] CLSID for the class object
* riid [I] Reference to identifier of interface for class object
* ppv [O] Address of variable to receive interface pointer for riid
*
* RETURNS
* Success: S_OK
* Failure: CLASS_E_CLASSNOTAVAILABLE, E_OUTOFMEMORY, E_INVALIDARG,
* E_UNEXPECTED
*/
HRESULT WINAPI DllGetClassObject(REFCLSID rclsid, REFIID riid, LPVOID *ppv)
2004-06-03 02:03:23 +02:00
{
2008-07-28 23:37:29 +02:00
unsigned int i;
2004-06-03 02:03:23 +02:00
IClassFactoryImpl *factory;
2008-07-28 23:37:29 +02:00
2004-06-03 02:03:23 +02:00
TRACE("(%s,%s,%p)\n", debugstr_guid(rclsid), debugstr_guid(riid), ppv);
if ( !IsEqualGUID( &IID_IClassFactory, riid )
&& ! IsEqualGUID( &IID_IUnknown, riid) )
return E_NOINTERFACE;
for (i = 0; i < ARRAY_SIZE(object_creation); i++)
2004-06-03 02:03:23 +02:00
{
if (IsEqualGUID(object_creation[i].clsid, rclsid))
break;
}
if (i == ARRAY_SIZE(object_creation))
2004-06-03 02:03:23 +02:00
{
FIXME("%s: no class found.\n", debugstr_guid(rclsid));
return CLASS_E_CLASSNOTAVAILABLE;
}
factory = HeapAlloc(GetProcessHeap(), 0, sizeof(*factory));
if (factory == NULL) return E_OUTOFMEMORY;
2011-05-27 03:20:55 +02:00
factory->IClassFactory_iface.lpVtbl = &XFCF_Vtbl;
2004-06-03 02:03:23 +02:00
factory->ref = 1;
factory->pfnCreateInstance = object_creation[i].pfnCreateInstance;
2011-05-27 03:20:55 +02:00
*ppv = &(factory->IClassFactory_iface);
2004-06-03 02:03:23 +02:00
return S_OK;
}