Sebastian Lackner : uxtheme: Return E_NOTIMPL in HRESULT stub functions.
Module: wine Branch: master Commit: 461bfc64ba84250941e79cc898784bdcd8d1670c URL: http://source.winehq.org/git/wine.git/?a=commit;h=461bfc64ba84250941e79cc898... Author: Sebastian Lackner <sebastian(a)fds-team.de> Date: Tue Sep 13 23:26:39 2016 +0200 uxtheme: Return E_NOTIMPL in HRESULT stub functions. Signed-off-by: Sebastian Lackner <sebastian(a)fds-team.de> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- dlls/uxtheme/draw.c | 2 +- dlls/uxtheme/system.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/uxtheme/draw.c b/dlls/uxtheme/draw.c index 753ac36..8f0eabe 100644 --- a/dlls/uxtheme/draw.c +++ b/dlls/uxtheme/draw.c @@ -1626,7 +1626,7 @@ HRESULT WINAPI DrawThemeIcon(HTHEME hTheme, HDC hdc, int iPartId, int iStateId, FIXME("%d %d: stub\n", iPartId, iStateId); if(!hTheme) return E_HANDLE; - return ERROR_CALL_NOT_IMPLEMENTED; + return E_NOTIMPL; } /*********************************************************************** diff --git a/dlls/uxtheme/system.c b/dlls/uxtheme/system.c index 7d07680..625be24 100644 --- a/dlls/uxtheme/system.c +++ b/dlls/uxtheme/system.c @@ -762,7 +762,7 @@ HRESULT WINAPI HitTestThemeBackground(HTHEME hTheme, HDC hdc, int iPartId, FIXME("%d %d 0x%08x: stub\n", iPartId, iStateId, dwOptions); if(!hTheme) return E_HANDLE; - return ERROR_CALL_NOT_IMPLEMENTED; + return E_NOTIMPL; } /*********************************************************************** @@ -1188,7 +1188,7 @@ HRESULT WINAPI ParseThemeIniFile(LPCWSTR pszIniFileName, LPWSTR pszUnknown, ParseThemeIniFileProc callback, LPVOID lpData) { FIXME("%s %s: stub\n", debugstr_w(pszIniFileName), debugstr_w(pszUnknown)); - return ERROR_CALL_NOT_IMPLEMENTED; + return E_NOTIMPL; } /**********************************************************************
participants (1)
-
Alexandre Julliard