shell32: Add SHLimitInputEdit stub.

Signed-off-by: Alex Henrie <alexhenrie24@gmail.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Alex Henrie 2016-04-25 21:13:04 -06:00 committed by Alexandre Julliard
parent 1ec8fa53db
commit 1dc0669894
2 changed files with 10 additions and 0 deletions

View File

@ -264,6 +264,7 @@
727 stdcall SHGetImageList(long ptr ptr)
730 stdcall -noname RestartDialogEx(long wstr long long)
743 stdcall SHCreateFileExtractIconW(wstr long ptr ptr)
747 stdcall SHLimitInputEdit(ptr ptr)
1217 stub FOOBAR1217 # no joke! This is the real name!!

View File

@ -600,3 +600,12 @@ HRESULT WINAPI SHGetSetFolderCustomSettings( LPSHFOLDERCUSTOMSETTINGS fcs, LPCST
FIXME("%p %s 0x%x: stub\n", fcs, path, flag);
return E_NOTIMPL;
}
/***********************************************************************
* SHLimitInputEdit (SHELL32.747)
*/
HRESULT WINAPI SHLimitInputEdit( HWND textbox, IShellFolder *folder )
{
FIXME("%p %p: stub\n", textbox, folder);
return E_NOTIMPL;
}