mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[User32] Return Default Window Procedure for WM_DEVICECHANGE
See CORE-16492.
This commit is contained in:
parent
1e0bb66452
commit
7772f97241
2 changed files with 6 additions and 0 deletions
|
@ -547,6 +547,9 @@ IntDefWindowProc(
|
|||
|
||||
switch (Msg)
|
||||
{
|
||||
case WM_DEVICECHANGE:
|
||||
return TRUE;
|
||||
|
||||
case WM_GETTEXTLENGTH:
|
||||
{
|
||||
PWSTR buf;
|
||||
|
|
|
@ -328,6 +328,9 @@ User32DefWindowProc(HWND hWnd,
|
|||
|
||||
switch (Msg)
|
||||
{
|
||||
case WM_DEVICECHANGE:
|
||||
return TRUE;
|
||||
|
||||
case WM_POPUPSYSTEMMENU:
|
||||
{
|
||||
/* This is an undocumented message used by the windows taskbar to
|
||||
|
|
Loading…
Reference in a new issue