mirror of
https://github.com/reactos/wine.git
synced 2025-02-19 20:31:35 +00:00
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)
|
||||
{
|
||||
FIXME("stub\n");
|
||||
return E_NOTIMPL;
|
||||
internat *This = impl_from_IMimeInternational( iface );
|
||||
|
||||
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)
|
||||
|
Loading…
x
Reference in New Issue
Block a user