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.
oldstable
Rob Shearman 2010-03-23 13:33:29 +00:00 committed by Alexandre Julliard
parent 361a39fff3
commit cf45d59912
1 changed files with 1 additions and 1 deletions

View File

@ -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(