projects
/
reactos.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8a54e4c
)
[IMAGELISTVIEWER] Avoid (DLGPROC) cast (#5697)
author
Joachim Henze
<joachim.henze@reactos.org>
Mon, 18 Sep 2023 10:22:59 +0000
(12:22 +0200)
committer
GitHub
<noreply@github.com>
Mon, 18 Sep 2023 10:22:59 +0000
(10:22 +0000)
modules/rostests/tests/Imagelistviewer/main.c
patch
|
blob
|
history
diff --git
a/modules/rostests/tests/Imagelistviewer/main.c
b/modules/rostests/tests/Imagelistviewer/main.c
index
f283290
..
7251071
100644
(file)
--- a/
modules/rostests/tests/Imagelistviewer/main.c
+++ b/
modules/rostests/tests/Imagelistviewer/main.c
@@
-88,8
+88,7
@@
DisplayImageList(HWND hwnd,
return TRUE;
}
-
-BOOL CALLBACK
+INT_PTR CALLBACK
DlgProc(HWND hwnd,
UINT message,
WPARAM wParam,
@@
-142,5
+141,5
@@
WinMain(HINSTANCE hThisInstance,
return DialogBox(hThisInstance,
MAKEINTRESOURCE(IDD_IMGLST),
NULL,
-
(DLGPROC)
DlgProc);
+ DlgProc);
}