windowscodecs: Add wrapper functions for IWICComponentInfo methods.
This commit is contained in:
parent
2fc7cdc93f
commit
de9d18c6ff
|
@ -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);
|
||||
|
|
|
@ -55,11 +55,11 @@
|
|||
@ stdcall IWICColorContext_InitializeFromMemory_Proxy(ptr ptr long) IWICColorContext_InitializeFromMemory_Proxy_W
|
||||
@ stub IWICComponentFactory_CreateMetadataWriterFromReader_Proxy
|
||||
@ stub IWICComponentFactory_CreateQueryWriterFromBlockWriter_Proxy
|
||||
@ stub IWICComponentInfo_GetAuthor_Proxy
|
||||
@ stub IWICComponentInfo_GetCLSID_Proxy
|
||||
@ stub IWICComponentInfo_GetFriendlyName_Proxy
|
||||
@ stub IWICComponentInfo_GetSpecVersion_Proxy
|
||||
@ stub IWICComponentInfo_GetVersion_Proxy
|
||||
@ 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
|
||||
@ stdcall IWICComponentInfo_GetSpecVersion_Proxy(ptr long ptr ptr) IWICComponentInfo_GetSpecVersion_Proxy_W
|
||||
@ stdcall 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
|
||||
|
|
Loading…
Reference in New Issue