Compare commits

...

1 Commits

Author SHA1 Message Date
Joachim Henze
51c0ecdc8b [IMAGELISTVIEWER] Avoid (DLGPROC) cast 2023-09-18 00:18:24 +02:00

View File

@@ -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);
}