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.
This commit is contained in:
parent
361a39fff3
commit
cf45d59912
|
@ -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(
|
||||
|
|
Loading…
Reference in New Issue