dxgi: Implement CreateDXGIFactory().
[wine/hacks.git] / dlls / dxgi / dxgi_main.c
blob44b4eeec36a226cb1f7ded362b7c69f0778fcc14
1 /*
2 * Copyright 2008 Henri Verbeet for CodeWeavers
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
20 #include "config.h"
21 #include "wine/port.h"
23 #include "dxgi_private.h"
25 WINE_DEFAULT_DEBUG_CHANNEL(dxgi);
27 BOOL WINAPI DllMain(HINSTANCE hInstDLL, DWORD fdwReason, LPVOID lpv)
29 TRACE("fdwReason %u\n", fdwReason);
31 switch(fdwReason)
33 case DLL_PROCESS_ATTACH:
34 DisableThreadLibraryCalls(hInstDLL);
35 break;
38 return TRUE;
41 HRESULT WINAPI CreateDXGIFactory(REFIID riid, void **factory)
43 struct dxgi_factory *object;
44 HRESULT hr;
46 FIXME("riid %s, factory %p partial stub!\n", debugstr_guid(riid), factory);
48 object = HeapAlloc(GetProcessHeap(), HEAP_ZERO_MEMORY, sizeof(*object));
49 if (!object)
51 ERR("Failed to allocate DXGI factory object memory\n");
52 return E_OUTOFMEMORY;
55 object->vtbl = &dxgi_factory_vtbl;
56 object->refcount = 1;
58 TRACE("Created IDXGIFactory %p\n", object);
60 hr = IDXGIFactory_QueryInterface((IDXGIFactory *)object, riid, factory);
61 IDXGIFactory_Release((IDXGIFactory *)object);
63 return hr;