[PATCH 0/1] MR8397: msi: Use LRESULT to store return value from CallWindowProcW.
From: Bernhard Übelacker <bernhardu(a)mailbox.org> Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=58345 --- dlls/msi/dialog.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 57c9cc9bc9e..bfe494de30d 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -1183,7 +1183,7 @@ struct msi_scrolltext_info static LRESULT WINAPI MSIScrollText_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { struct msi_scrolltext_info *info; - HRESULT r; + LRESULT r; TRACE( "%p %04x %#Ix %#Ix\n", hWnd, msg, wParam, lParam ); @@ -1760,7 +1760,7 @@ static void mask_next_control( struct msi_maskedit_info *info, HWND hWnd ) static LRESULT WINAPI MSIMaskedEdit_WndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lParam) { struct msi_maskedit_info *info; - HRESULT r; + LRESULT r; TRACE("%p %04x %#Ix %#Ix\n", hWnd, msg, wParam, lParam); @@ -2383,7 +2383,7 @@ static LRESULT WINAPI MSISelectionTree_WndProc(HWND hWnd, UINT msg, WPARAM wPara { struct msi_selection_tree_info *info; TVHITTESTINFO tvhti; - HRESULT r; + LRESULT r; TRACE("%p %04x %#Ix %#Ix\n", hWnd, msg, wParam, lParam); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8397
This merge request was approved by Hans Leidekker. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/8397
participants (2)
-
Bernhard Übelacker -
Hans Leidekker (@hans)