inetcomm: Implement MimeOleGetCharsetInfo.
This commit is contained in:
parent
5497ff016c
commit
bdc9440d65
|
@ -546,3 +546,19 @@ HRESULT WINAPI MimeOleGetInternat(IMimeInternational **internat)
|
|||
IMimeInternational_AddRef(*internat);
|
||||
return S_OK;
|
||||
}
|
||||
|
||||
HRESULT WINAPI MimeOleGetCharsetInfo(HCHARSET hCharset, LPINETCSETINFO pCsetInfo)
|
||||
{
|
||||
IMimeInternational *internat;
|
||||
HRESULT hr;
|
||||
|
||||
TRACE("(%p, %p)\n", hCharset, pCsetInfo);
|
||||
|
||||
hr = MimeOleGetInternat(&internat);
|
||||
if(SUCCEEDED(hr))
|
||||
{
|
||||
hr = IMimeInternational_GetCharsetInfo(internat, hCharset, pCsetInfo);
|
||||
IMimeInternational_Release(internat);
|
||||
}
|
||||
return S_OK;
|
||||
}
|
||||
|
|
|
@ -2930,10 +2930,3 @@ HRESULT WINAPI MimeOleGetAllocator(IMimeAllocator **alloc)
|
|||
{
|
||||
return MimeAllocator_create(NULL, (void**)alloc);
|
||||
}
|
||||
|
||||
HRESULT WINAPI MimeOleGetCharsetInfo(HCHARSET hCharset, LPINETCSETINFO pCsetInfo)
|
||||
{
|
||||
FIXME("(%p, %p)\n", hCharset, pCsetInfo);
|
||||
if(!hCharset) return E_INVALIDARG;
|
||||
return E_FAIL;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue