mirror of
https://github.com/reactos/reactos.git
synced 2025-04-04 04:26:32 +00:00
[IMAGELISTVIEWER] Avoid (DLGPROC) cast (#5697)
This commit is contained in:
parent
8a54e4c9f6
commit
1e06be778b
1 changed files with 2 additions and 3 deletions
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue