inetcomm: Add MimeGetAddressFormatW stub.
Signed-off-by: Alistair Leslie-Hughes <leslie_alistair@hotmail.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c74a53951d
commit
27ae15ccfe
|
@ -42,7 +42,7 @@
|
||||||
@ stub MimeEditGetBackgroundImageUrl
|
@ stub MimeEditGetBackgroundImageUrl
|
||||||
@ stub MimeEditIsSafeToRun
|
@ stub MimeEditIsSafeToRun
|
||||||
@ stub MimeEditViewSource
|
@ stub MimeEditViewSource
|
||||||
@ stub MimeGetAddressFormatW
|
@ stdcall MimeGetAddressFormatW(ptr ptr long long ptr)
|
||||||
@ stub MimeOleAlgNameFromSMimeCap
|
@ stub MimeOleAlgNameFromSMimeCap
|
||||||
@ stub MimeOleAlgStrengthFromSMimeCap
|
@ stub MimeOleAlgStrengthFromSMimeCap
|
||||||
@ stub MimeOleClearDirtyTree
|
@ stub MimeOleClearDirtyTree
|
||||||
|
|
|
@ -3221,3 +3221,11 @@ HRESULT WINAPI MimeOleGetPropertySchema(IMimePropertySchema **schema)
|
||||||
|
|
||||||
return S_OK;
|
return S_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
HRESULT WINAPI MimeGetAddressFormatW(REFIID riid, void *object, DWORD addr_type,
|
||||||
|
ADDRESSFORMAT addr_format, WCHAR **address)
|
||||||
|
{
|
||||||
|
FIXME("(%s, %p, %d, %d, %p) stub\n", debugstr_guid(riid), object, addr_type, addr_format, address);
|
||||||
|
|
||||||
|
return E_NOTIMPL;
|
||||||
|
}
|
||||||
|
|
|
@ -1435,7 +1435,7 @@ cpp_quote("HRESULT WINAPI MimeEditGetBackgroundImageUrl(IUnknown*,BSTR*);")
|
||||||
cpp_quote("HRESULT WINAPI MimeEditDocumentFromStream(IStream*,REFIID,void**);")
|
cpp_quote("HRESULT WINAPI MimeEditDocumentFromStream(IStream*,REFIID,void**);")
|
||||||
|
|
||||||
cpp_quote("HRESULT WINAPI MimeOleGetPropertySchema(IMimePropertySchema**);")
|
cpp_quote("HRESULT WINAPI MimeOleGetPropertySchema(IMimePropertySchema**);")
|
||||||
|
cpp_quote("HRESULT WINAPI MimeGetAddressFormatW(REFIID,void*,DWORD,ADDRESSFORMAT,WCHAR**);")
|
||||||
cpp_quote("#ifdef __cplusplus")
|
cpp_quote("#ifdef __cplusplus")
|
||||||
cpp_quote("}")
|
cpp_quote("}")
|
||||||
cpp_quote("#endif")
|
cpp_quote("#endif")
|
||||||
|
|
Loading…
Reference in New Issue