mirror of
https://github.com/reactos/wine.git
synced 2024-11-28 14:10:32 +00:00
inetcomm: Add wrapper functions MimeOleFindCharset and MimeOleGetDefaultCharset.
This commit is contained in:
parent
b9356960db
commit
3093023979
@ -59,7 +59,7 @@
|
||||
@ stub MimeOleDecodeHeader
|
||||
@ stub MimeOleEncodeHeader
|
||||
@ stub MimeOleFileTimeToInetDate
|
||||
@ stub MimeOleFindCharset
|
||||
@ stdcall MimeOleFindCharset(str ptr)
|
||||
@ stub MimeOleGenerateCID
|
||||
@ stub MimeOleGenerateFileName
|
||||
@ stub MimeOleGenerateMID
|
||||
@ -71,7 +71,7 @@
|
||||
@ stub MimeOleGetCodePageCharset
|
||||
@ stub MimeOleGetCodePageInfo
|
||||
@ stub MimeOleGetContentTypeExt
|
||||
@ stub MimeOleGetDefaultCharset
|
||||
@ stdcall MimeOleGetDefaultCharset(ptr)
|
||||
@ stub MimeOleGetExtContentType
|
||||
@ stub MimeOleGetFileExtension
|
||||
@ stub MimeOleGetFileInfo
|
||||
|
@ -547,6 +547,22 @@ HRESULT WINAPI MimeOleGetInternat(IMimeInternational **internat)
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MimeOleFindCharset(LPCSTR name, LPHCHARSET charset)
|
||||
{
|
||||
IMimeInternational *internat;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%s, %p)\n", debugstr_a(name), charset);
|
||||
|
||||
hr = MimeOleGetInternat(&internat);
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
hr = IMimeInternational_FindCharset(internat, name, charset);
|
||||
IMimeInternational_Release(internat);
|
||||
}
|
||||
return hr;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MimeOleGetCharsetInfo(HCHARSET hCharset, LPINETCSETINFO pCsetInfo)
|
||||
{
|
||||
IMimeInternational *internat;
|
||||
@ -560,5 +576,21 @@ HRESULT WINAPI MimeOleGetCharsetInfo(HCHARSET hCharset, LPINETCSETINFO pCsetInfo
|
||||
hr = IMimeInternational_GetCharsetInfo(internat, hCharset, pCsetInfo);
|
||||
IMimeInternational_Release(internat);
|
||||
}
|
||||
return S_OK;
|
||||
return hr;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MimeOleGetDefaultCharset(LPHCHARSET charset)
|
||||
{
|
||||
IMimeInternational *internat;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p)\n", charset);
|
||||
|
||||
hr = MimeOleGetInternat(&internat);
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
hr = IMimeInternational_GetDefaultCharset(internat, charset);
|
||||
IMimeInternational_Release(internat);
|
||||
}
|
||||
return hr;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user