Commit 1dc06698 authored by Alex Henrie's avatar Alex Henrie Committed by Alexandre Julliard

shell32: Add SHLimitInputEdit stub.

parent 1ec8fa53
...@@ -264,6 +264,7 @@ ...@@ -264,6 +264,7 @@
727 stdcall SHGetImageList(long ptr ptr) 727 stdcall SHGetImageList(long ptr ptr)
730 stdcall -noname RestartDialogEx(long wstr long long) 730 stdcall -noname RestartDialogEx(long wstr long long)
743 stdcall SHCreateFileExtractIconW(wstr long ptr ptr) 743 stdcall SHCreateFileExtractIconW(wstr long ptr ptr)
747 stdcall SHLimitInputEdit(ptr ptr)
1217 stub FOOBAR1217 # no joke! This is the real name!! 1217 stub FOOBAR1217 # no joke! This is the real name!!
......
...@@ -600,3 +600,12 @@ HRESULT WINAPI SHGetSetFolderCustomSettings( LPSHFOLDERCUSTOMSETTINGS fcs, LPCST ...@@ -600,3 +600,12 @@ HRESULT WINAPI SHGetSetFolderCustomSettings( LPSHFOLDERCUSTOMSETTINGS fcs, LPCST
FIXME("%p %s 0x%x: stub\n", fcs, path, flag); FIXME("%p %s 0x%x: stub\n", fcs, path, flag);
return E_NOTIMPL; return E_NOTIMPL;
} }
/***********************************************************************
* SHLimitInputEdit (SHELL32.747)
*/
HRESULT WINAPI SHLimitInputEdit( HWND textbox, IShellFolder *folder )
{
FIXME("%p %p: stub\n", textbox, folder);
return E_NOTIMPL;
}
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