inetcomm: Implement IMimeInternational_SetDefaultCharset.
This commit is contained in:
parent
4271524b8a
commit
ed39ba4539
@ -111,8 +111,16 @@ static ULONG WINAPI MimeInternat_Release( IMimeInternational *iface )
|
|||||||
|
|
||||||
static HRESULT WINAPI MimeInternat_SetDefaultCharset(IMimeInternational *iface, HCHARSET hCharset)
|
static HRESULT WINAPI MimeInternat_SetDefaultCharset(IMimeInternational *iface, HCHARSET hCharset)
|
||||||
{
|
{
|
||||||
FIXME("stub\n");
|
internat *This = impl_from_IMimeInternational( iface );
|
||||||
return E_NOTIMPL;
|
|
||||||
|
TRACE("(%p)->(%p)\n", iface, hCharset);
|
||||||
|
|
||||||
|
if(hCharset == NULL) return E_INVALIDARG;
|
||||||
|
/* FIXME check hCharset is valid */
|
||||||
|
|
||||||
|
InterlockedExchangePointer(&This->default_charset, hCharset);
|
||||||
|
|
||||||
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
static HRESULT WINAPI MimeInternat_GetDefaultCharset(IMimeInternational *iface, LPHCHARSET phCharset)
|
static HRESULT WINAPI MimeInternat_GetDefaultCharset(IMimeInternational *iface, LPHCHARSET phCharset)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user