Commit cf45d599 authored by Rob Shearman's avatar Rob Shearman Committed by Alexandre Julliard

include: Change an unsized [out] string to be sized in IMultiLanguage2.

Unsized [out] strings are not allowed because of the potential to overflow the buffer passed in.
parent 361a39ff
......@@ -668,7 +668,7 @@ interface IMultiLanguage2 : IUnknown
HRESULT GetCodePageDescription(
[in] UINT uiCodePage,
[in] LCID lcid,
[in,out] LPWSTR lpWideCharStr,
[in,out,size_is(cchWideChar)] LPWSTR lpWideCharStr,
[in] int cchWideChar);
HRESULT IsCodePageInstallable(
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment