[IMAGELISTVIEWER] Avoid (DLGPROC) cast (#5697)

This commit is contained in:
Joachim Henze 2023-09-18 12:22:59 +02:00 committed by GitHub
parent 8a54e4c9f6
commit 1e06be778b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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