mirror of
https://github.com/reactos/reactos.git
synced 2025-08-02 21:06:17 +00:00
[INCLUDE][SHELL32_APITEST] Add SHLimitInputEdit testcase (#2053)
- Add IItemNameLimits interface into shobjidl.idl. - Add a testcase for shell32!SHLimitInputEdit function. CORE-11701
This commit is contained in:
parent
9420daee3d
commit
6cc8e7db4b
5 changed files with 399 additions and 0 deletions
|
@ -4745,4 +4745,22 @@ interface IUserNotification2 : IUnknown
|
|||
[in, string] LPCWSTR pszSoundName);
|
||||
};
|
||||
|
||||
/*****************************************************************************
|
||||
* IItemNameLimits interface
|
||||
*/
|
||||
|
||||
[
|
||||
uuid(1df0d7f1-b267-4d28-8b10-12e23202a5c4)
|
||||
]
|
||||
interface IItemNameLimits : IUnknown
|
||||
{
|
||||
HRESULT GetValidCharacters(
|
||||
[out, string] LPWSTR *ppwszValidChars,
|
||||
[out, string] LPWSTR *ppwszInvalidChars);
|
||||
|
||||
HRESULT GetMaxLength(
|
||||
[in, string] LPCWSTR pszName,
|
||||
[out] int *piMaxNameLen);
|
||||
};
|
||||
|
||||
#endif // __REACTOS__
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue