mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 16:02:56 +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)
|
switch (Msg)
|
||||||
{
|
{
|
||||||
|
case WM_DEVICECHANGE:
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
case WM_GETTEXTLENGTH:
|
case WM_GETTEXTLENGTH:
|
||||||
{
|
{
|
||||||
PWSTR buf;
|
PWSTR buf;
|
||||||
|
|
|
@ -328,6 +328,9 @@ User32DefWindowProc(HWND hWnd,
|
||||||
|
|
||||||
switch (Msg)
|
switch (Msg)
|
||||||
{
|
{
|
||||||
|
case WM_DEVICECHANGE:
|
||||||
|
return TRUE;
|
||||||
|
|
||||||
case WM_POPUPSYSTEMMENU:
|
case WM_POPUPSYSTEMMENU:
|
||||||
{
|
{
|
||||||
/* This is an undocumented message used by the windows taskbar to
|
/* This is an undocumented message used by the windows taskbar to
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue