From 1dc0669894676db648d1222627f4de5f75396ff1 Mon Sep 17 00:00:00 2001 From: Alex Henrie Date: Mon, 25 Apr 2016 21:13:04 -0600 Subject: [PATCH] shell32: Add SHLimitInputEdit stub. Signed-off-by: Alex Henrie Signed-off-by: Alexandre Julliard --- dlls/shell32/shell32.spec | 1 + dlls/shell32/shlfolder.c | 9 +++++++++ 2 files changed, 10 insertions(+) diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 93fd4495ce2..7ebd03291b4 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -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!! diff --git a/dlls/shell32/shlfolder.c b/dlls/shell32/shlfolder.c index 46ccc56e143..c39d96837a4 100644 --- a/dlls/shell32/shlfolder.c +++ b/dlls/shell32/shlfolder.c @@ -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; +}