Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
bb2df245
Commit
bb2df245
authored
May 08, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
May 09, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Implement WICCreateImagingFactory_Proxy.
parent
721a3c91
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
46 additions
and
1 deletion
+46
-1
Makefile.in
dlls/windowscodecs/Makefile.in
+1
-0
proxy.c
dlls/windowscodecs/proxy.c
+44
-0
windowscodecs.spec
dlls/windowscodecs/windowscodecs.spec
+1
-1
No files found.
dlls/windowscodecs/Makefile.in
View file @
bb2df245
...
...
@@ -22,6 +22,7 @@ C_SRCS = \
palette.c
\
pngformat.c
\
propertybag.c
\
proxy.c
\
regsvr.c
\
stream.c
\
tgaformat.c
\
...
...
dlls/windowscodecs/proxy.c
0 → 100644
View file @
bb2df245
/*
* 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
);
}
dlls/windowscodecs/windowscodecs.spec
View file @
bb2df245
...
...
@@ -107,7 +107,7 @@
@ stdcall WICConvertBitmapSource(ptr ptr ptr)
@ stub WICCreateBitmapFromSection
@ stub WICCreateColorContext_Proxy
@ st
ub WICCreateImagingFactory_Proxy
@ st
dcall WICCreateImagingFactory_Proxy(long ptr)
@ stub WICGetMetadataContentSize
@ stub WICMapGuidToShortName
@ stub WICMapSchemaToName
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment