mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[csrss]
- Route unhandled messages to DefWndProc, as it's usually done for every window proc. svn path=/trunk/; revision=43935
This commit is contained in:
parent
006d77b16b
commit
a63e388f53
1 changed files with 3 additions and 0 deletions
|
@ -110,6 +110,9 @@ DtbgWindowProc(HWND Wnd, UINT Msg, WPARAM wParam, LPARAM lParam)
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
default:
|
||||||
|
return DefWindowProcW(Wnd, Msg, wParam, lParam);
|
||||||
}
|
}
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue