Module: wine Branch: master Commit: cfa1813e1bd2f08cfa7d6013335e9bc19173cc38 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cfa1813e1bd2f08cfa7d601333...
Author: Austin English austinenglish@gmail.com Date: Thu Jun 28 17:56:13 2012 -0700
shell32: Add a stub for SHSetUnreadMailCountW.
---
dlls/shell32/shell32.spec | 1 + dlls/shell32/shell32_main.c | 15 +++++++++++++++ 2 files changed, 16 insertions(+), 0 deletions(-)
diff --git a/dlls/shell32/shell32.spec b/dlls/shell32/shell32.spec index 6fcd5e8..dc09187 100644 --- a/dlls/shell32/shell32.spec +++ b/dlls/shell32/shell32.spec @@ -403,6 +403,7 @@ @ stdcall SHQueryRecycleBinA(str ptr) @ stdcall SHQueryRecycleBinW(wstr ptr) @ stdcall SHSetLocalizedName(wstr wstr long) +@ stdcall SHSetUnreadMailCountW(wstr long wstr) @ stdcall SHUpdateRecycleBinIcon() @ stdcall SheChangeDirA(str) @ stub SheChangeDirExA diff --git a/dlls/shell32/shell32_main.c b/dlls/shell32/shell32_main.c index 97d8e98..5553e55 100644 --- a/dlls/shell32/shell32_main.c +++ b/dlls/shell32/shell32_main.c @@ -1282,14 +1282,29 @@ LRESULT CALLBACK ShellHookProc(DWORD a, DWORD b, DWORD c) return 0; }
+/*********************************************************************** + * SHGetLocalizedName (SHELL32.@) + */ HRESULT WINAPI SHGetLocalizedName(LPCWSTR path, LPWSTR module, UINT size, INT *res) { FIXME("%s %p %u %p: stub\n", debugstr_w(path), module, size, res); return E_NOTIMPL; }
+/*********************************************************************** + * SetCurrentProcessExplicitAppUserModelID (SHELL32.@) + */ HRESULT WINAPI SetCurrentProcessExplicitAppUserModelID(PCWSTR appid) { FIXME("%s: stub\n", debugstr_w(appid)); return E_NOTIMPL; } + +/*********************************************************************** + * SHSetUnreadMailCountW (SHELL32.@) + */ +HRESULT WINAPI SHSetUnreadMailCountW(LPCWSTR mailaddress, DWORD count, LPCWSTR executecommand) +{ + FIXME("%s %x %s: stub\n", debugstr_w(mailaddress), count, debugstr_w(executecommand)); + return E_NOTIMPL; +}