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
6e2da125
Commit
6e2da125
authored
May 08, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
May 17, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add wrapper functions for IWICComponentFactory methods.
parent
157c92de
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
2 deletions
+14
-2
proxy.c
dlls/windowscodecs/proxy.c
+12
-0
windowscodecs.spec
dlls/windowscodecs/windowscodecs.spec
+2
-2
No files found.
dlls/windowscodecs/proxy.c
View file @
6e2da125
...
...
@@ -305,6 +305,18 @@ HRESULT WINAPI IWICColorContext_InitializeFromMemory_Proxy_W(IWICColorContext *i
return
IWICColorContext_InitializeFromMemory
(
iface
,
pbBuffer
,
cbBufferSize
);
}
HRESULT
WINAPI
IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W
(
IWICComponentFactory
*
iface
,
IWICMetadataReader
*
pIReader
,
const
GUID
*
pguidVendor
,
IWICMetadataWriter
**
ppIWriter
)
{
return
IWICComponentFactory_CreateMetadataWriterFromReader
(
iface
,
pIReader
,
pguidVendor
,
ppIWriter
);
}
HRESULT
WINAPI
IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy_W
(
IWICComponentFactory
*
iface
,
IWICMetadataBlockWriter
*
pIBlockWriter
,
IWICMetadataQueryWriter
**
ppIQueryWriter
)
{
return
IWICComponentFactory_CreateQueryWriterFromBlockWriter
(
iface
,
pIBlockWriter
,
ppIQueryWriter
);
}
HRESULT
WINAPI
IWICComponentInfo_GetCLSID_Proxy_W
(
IWICComponentInfo
*
iface
,
CLSID
*
pclsid
)
{
...
...
dlls/windowscodecs/windowscodecs.spec
View file @
6e2da125
...
...
@@ -53,8 +53,8 @@
@ stdcall IWICBitmap_SetPalette_Proxy(ptr ptr) IWICBitmap_SetPalette_Proxy_W
@ stdcall IWICBitmap_SetResolution_Proxy(ptr double double) IWICBitmap_SetResolution_Proxy_W
@ stdcall IWICColorContext_InitializeFromMemory_Proxy(ptr ptr long) IWICColorContext_InitializeFromMemory_Proxy_W
@ st
ub IWICComponentFactory_CreateMetadataWriterFromReader_Proxy
@ st
ub IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy
@ st
dcall IWICComponentFactory_CreateMetadataWriterFromReader_Proxy(ptr ptr ptr ptr) IWICComponentFactory_CreateMetadataWriterFromReader_Proxy_W
@ st
dcall IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy(ptr ptr ptr) IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy_W
@ stdcall IWICComponentInfo_GetAuthor_Proxy(ptr long ptr ptr) IWICComponentInfo_GetAuthor_Proxy_W
@ stdcall IWICComponentInfo_GetCLSID_Proxy(ptr ptr) IWICComponentInfo_GetCLSID_Proxy_W
@ stdcall IWICComponentInfo_GetFriendlyName_Proxy(ptr long ptr ptr) IWICComponentInfo_GetFriendlyName_Proxy_W
...
...
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