Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
536b208c
Commit
536b208c
authored
May 08, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
May 14, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add wrapper functions for IWICMetadataQueryReader methods.
parent
320d419b
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
4 deletions
+28
-4
proxy.c
dlls/windowscodecs/proxy.c
+24
-0
windowscodecs.spec
dlls/windowscodecs/windowscodecs.spec
+4
-4
No files found.
dlls/windowscodecs/proxy.c
View file @
536b208c
...
...
@@ -277,6 +277,30 @@ HRESULT WINAPI IWICImagingFactory_CreateStream_Proxy_W(IWICImagingFactory *pFact
return
IWICImagingFactory_CreateStream
(
pFactory
,
ppIWICStream
);
}
HRESULT
WINAPI
IWICMetadataQueryReader_GetContainerFormat_Proxy_W
(
IWICMetadataQueryReader
*
iface
,
GUID
*
pguidContainerFormat
)
{
return
IWICMetadataQueryReader_GetContainerFormat
(
iface
,
pguidContainerFormat
);
}
HRESULT
WINAPI
IWICMetadataQueryReader_GetLocation_Proxy_W
(
IWICMetadataQueryReader
*
iface
,
UINT
cchMaxLength
,
WCHAR
*
wzNamespace
,
UINT
*
pcchActualLength
)
{
return
IWICMetadataQueryReader_GetLocation
(
iface
,
cchMaxLength
,
wzNamespace
,
pcchActualLength
);
}
HRESULT
WINAPI
IWICMetadataQueryReader_GetMetadataByName_Proxy_W
(
IWICMetadataQueryReader
*
iface
,
LPCWSTR
wzName
,
PROPVARIANT
*
pvarValue
)
{
return
IWICMetadataQueryReader_GetMetadataByName
(
iface
,
wzName
,
pvarValue
);
}
HRESULT
WINAPI
IWICMetadataQueryReader_GetEnumerator_Proxy_W
(
IWICMetadataQueryReader
*
iface
,
IEnumString
**
ppIEnumString
)
{
return
IWICMetadataQueryReader_GetEnumerator
(
iface
,
ppIEnumString
);
}
HRESULT
WINAPI
IWICPalette_InitializePredefined_Proxy_W
(
IWICPalette
*
iface
,
WICBitmapPaletteType
ePaletteType
,
BOOL
fAddTransparentColor
)
{
...
...
dlls/windowscodecs/windowscodecs.spec
View file @
536b208c
...
...
@@ -85,10 +85,10 @@
@ stdcall IWICImagingFactory_CreateStream_Proxy(ptr ptr) IWICImagingFactory_CreateStream_Proxy_W
@ stub IWICMetadataBlockReader_GetCount_Proxy
@ stub IWICMetadataBlockReader_GetReaderByIndex_Proxy
@ st
ub IWICMetadataQueryReader_GetContainerFormat_Proxy
@ st
ub IWICMetadataQueryReader_GetEnumerator_Proxy
@ st
ub IWICMetadataQueryReader_GetLocation_Proxy
@ st
ub IWICMetadataQueryReader_GetMetadataByName_Proxy
@ st
dcall IWICMetadataQueryReader_GetContainerFormat_Proxy(ptr ptr) IWICMetadataQueryReader_GetContainerFormat_Proxy_W
@ st
dcall IWICMetadataQueryReader_GetEnumerator_Proxy(ptr ptr) IWICMetadataQueryReader_GetEnumerator_Proxy_W
@ st
dcall IWICMetadataQueryReader_GetLocation_Proxy(ptr long ptr ptr) IWICMetadataQueryReader_GetLocation_Proxy_W
@ st
dcall IWICMetadataQueryReader_GetMetadataByName_Proxy(ptr wstr ptr) IWICMetadataQueryReader_GetMetadataByName_Proxy_W
@ stub IWICMetadataQueryWriter_RemoveMetadataByName_Proxy
@ stub IWICMetadataQueryWriter_SetMetadataByName_Proxy
@ stdcall IWICPalette_GetColorCount_Proxy(ptr ptr) IWICPalette_GetColorCount_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