xW: mark a footgun

These messages are used by IsDialogMessage(), and use the WM_USER range.
This commit is contained in:
2023-07-27 23:07:17 +02:00
parent 8d9d1c60ec
commit afe4e61f08

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);
}