Commit 962e97db authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

comctl32/tests: Specify type of function argument and remove unused arguments.

parent a8e5179d
......@@ -48,7 +48,7 @@ static void MakeButton(TBBUTTON *p, int idCommand, int fsStyle, int nString) {
p->iString = nString;
}
LRESULT MyWnd_Notify(hWnd, wParam, lParam)
static LRESULT MyWnd_Notify(LPARAM lParam)
{
NMHDR *hdr = (NMHDR *)lParam;
NMTBHOTITEM *nmhi;
......@@ -74,7 +74,7 @@ static LRESULT CALLBACK MyWndProc(HWND hWnd, UINT msg, WPARAM wParam, LPARAM lPa
switch (msg)
{
case WM_NOTIFY:
return MyWnd_Notify(hWnd, wParam, lParam);
return MyWnd_Notify(lParam);
}
return DefWindowProcA(hWnd, msg, wParam, lParam);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment