mirror of
git://source.winehq.org/git/wine.git
synced 2024-11-01 11:08:45 +00:00
windowscodecs: Implement WICCreateImagingFactory_Proxy.
This commit is contained in:
parent
721a3c910a
commit
bb2df245a7
3 changed files with 46 additions and 1 deletions
|
@ -22,6 +22,7 @@ C_SRCS = \
|
|||
palette.c \
|
||||
pngformat.c \
|
||||
propertybag.c \
|
||||
proxy.c \
|
||||
regsvr.c \
|
||||
stream.c \
|
||||
tgaformat.c \
|
||||
|
|
44
dlls/windowscodecs/proxy.c
Normal file
44
dlls/windowscodecs/proxy.c
Normal file
|
@ -0,0 +1,44 @@
|
|||
/*
|
||||
* Misleadingly named convenience functions for accessing WIC.
|
||||
*
|
||||
* Copyright 2012 Vincent Povirk for CodeWeavers
|
||||
*
|
||||
* 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
|
||||
*/
|
||||
|
||||
#include "config.h"
|
||||
|
||||
#include <stdarg.h>
|
||||
|
||||
#define COBJMACROS
|
||||
#define NONAMELESSUNION
|
||||
|
||||
#include "windef.h"
|
||||
#include "winbase.h"
|
||||
#include "objbase.h"
|
||||
#include "wincodec.h"
|
||||
|
||||
#include "wincodecs_private.h"
|
||||
|
||||
#include "wine/debug.h"
|
||||
|
||||
WINE_DEFAULT_DEBUG_CHANNEL(wincodecs);
|
||||
|
||||
HRESULT WINAPI WICCreateImagingFactory_Proxy(UINT SDKVersion, IWICImagingFactory **ppIImagingFactory)
|
||||
{
|
||||
TRACE("%x, %p\n", SDKVersion, ppIImagingFactory);
|
||||
|
||||
return ImagingFactory_CreateInstance(NULL, &IID_IWICImagingFactory, (void**)ppIImagingFactory);
|
||||
}
|
|
@ -107,7 +107,7 @@
|
|||
@ stdcall WICConvertBitmapSource(ptr ptr ptr)
|
||||
@ stub WICCreateBitmapFromSection
|
||||
@ stub WICCreateColorContext_Proxy
|
||||
@ stub WICCreateImagingFactory_Proxy
|
||||
@ stdcall WICCreateImagingFactory_Proxy(long ptr)
|
||||
@ stub WICGetMetadataContentSize
|
||||
@ stub WICMapGuidToShortName
|
||||
@ stub WICMapSchemaToName
|
||||
|
|
Loading…
Reference in a new issue