xW: mark a footgun

These messages are used by IsDialogMessage(), and use the WM_USER range.
This commit is contained in:
Přemysl Eric Janouch 2023-07-27 23:07:17 +02:00
parent 8d9d1c60ec
commit afe4e61f08
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 3 additions and 0 deletions

View File

@ -1723,6 +1723,9 @@ window_proc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
break;
}
}
case DM_GETDEFID:
case DM_SETDEFID:
break;
}
return DefWindowProc(hWnd, uMsg, wParam, lParam);
}