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
de9d18c6
Commit
de9d18c6
authored
May 08, 2012
by
Vincent Povirk
Committed by
Alexandre Julliard
May 10, 2012
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
windowscodecs: Add wrapper functions for IWICComponentInfo methods.
parent
2fc7cdc9
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
35 additions
and
5 deletions
+35
-5
proxy.c
dlls/windowscodecs/proxy.c
+30
-0
windowscodecs.spec
dlls/windowscodecs/windowscodecs.spec
+5
-5
No files found.
dlls/windowscodecs/proxy.c
View file @
de9d18c6
...
...
@@ -108,6 +108,36 @@ HRESULT WINAPI IWICColorContext_InitializeFromMemory_Proxy_W(IWICColorContext *i
return
IWICColorContext_InitializeFromMemory
(
iface
,
pbBuffer
,
cbBufferSize
);
}
HRESULT
WINAPI
IWICComponentInfo_GetCLSID_Proxy_W
(
IWICComponentInfo
*
iface
,
CLSID
*
pclsid
)
{
return
IWICComponentInfo_GetCLSID
(
iface
,
pclsid
);
}
HRESULT
WINAPI
IWICComponentInfo_GetAuthor_Proxy_W
(
IWICComponentInfo
*
iface
,
UINT
cchAuthor
,
WCHAR
*
wzAuthor
,
UINT
*
pcchActual
)
{
return
IWICComponentInfo_GetAuthor
(
iface
,
cchAuthor
,
wzAuthor
,
pcchActual
);
}
HRESULT
WINAPI
IWICComponentInfo_GetVersion_Proxy_W
(
IWICComponentInfo
*
iface
,
UINT
cchVersion
,
WCHAR
*
wzVersion
,
UINT
*
pcchActual
)
{
return
IWICComponentInfo_GetVersion
(
iface
,
cchVersion
,
wzVersion
,
pcchActual
);
}
HRESULT
WINAPI
IWICComponentInfo_GetSpecVersion_Proxy_W
(
IWICComponentInfo
*
iface
,
UINT
cchSpecVersion
,
WCHAR
*
wzSpecVersion
,
UINT
*
pcchActual
)
{
return
IWICComponentInfo_GetSpecVersion
(
iface
,
cchSpecVersion
,
wzSpecVersion
,
pcchActual
);
}
HRESULT
WINAPI
IWICComponentInfo_GetFriendlyName_Proxy_W
(
IWICComponentInfo
*
iface
,
UINT
cchFriendlyName
,
WCHAR
*
wzFriendlyName
,
UINT
*
pcchActual
)
{
return
IWICComponentInfo_GetFriendlyName
(
iface
,
cchFriendlyName
,
wzFriendlyName
,
pcchActual
);
}
HRESULT
WINAPI
IWICFastMetadataEncoder_Commit_Proxy_W
(
IWICFastMetadataEncoder
*
iface
)
{
return
IWICFastMetadataEncoder_Commit
(
iface
);
...
...
dlls/windowscodecs/windowscodecs.spec
View file @
de9d18c6
...
...
@@ -55,11 +55,11 @@
@ stdcall IWICColorContext_InitializeFromMemory_Proxy(ptr ptr long) IWICColorContext_InitializeFromMemory_Proxy_W
@ stub IWICComponentFactory_CreateMetadataWriterFromReader_Proxy
@ stub IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy
@ st
ub IWICComponentInfo_GetAuthor_Proxy
@ st
ub IWICComponentInfo_GetCLSID_Proxy
@ st
ub IWICComponentInfo_GetFriendlyName_Proxy
@ st
ub IWICComponentInfo_GetSpecVersion_Proxy
@ st
ub IWICComponentInfo_GetVersion_Proxy
@ st
dcall IWICComponentInfo_GetAuthor_Proxy(ptr long ptr ptr) IWICComponentInfo_GetAuthor_Proxy_W
@ st
dcall IWICComponentInfo_GetCLSID_Proxy(ptr ptr) IWICComponentInfo_GetCLSID_Proxy_W
@ st
dcall IWICComponentInfo_GetFriendlyName_Proxy(ptr long ptr ptr) IWICComponentInfo_GetFriendlyName_Proxy_W
@ st
dcall IWICComponentInfo_GetSpecVersion_Proxy(ptr long ptr ptr) IWICComponentInfo_GetSpecVersion_Proxy_W
@ st
dcall IWICComponentInfo_GetVersion_Proxy(ptr long ptr ptr) IWICComponentInfo_GetVersion_Proxy_W
@ stdcall IWICFastMetadataEncoder_Commit_Proxy(ptr) IWICFastMetadataEncoder_Commit_Proxy_W
@ stdcall IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy(ptr ptr) IWICFastMetadataEncoder_GetMetadataQueryWriter_Proxy_W
@ stub IWICFormatConverter_Initialize_Proxy
...
...
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