Win32 - Safer WM_EXITSIZEMOVE

This commit is contained in:
Albert 2025-03-19 10:54:03 -04:00
parent 4c8fc25b2d
commit 1f80350564

View File

@ -11310,21 +11310,25 @@ BOOL WINAPI DllMain(HINSTANCE hinstDLL, DWORD fdwReason, LPVOID lpReserved) {
break;
}
case WM_EXITSIZEMOVE: {
if (_webui_mutex_is_connected(win, WEBUI_MUTEX_GET_STATUS)) {
RECT rect;
GetClientRect(hwnd, &rect);
WINDOWPLACEMENT wp;
wp.length = sizeof(WINDOWPLACEMENT);
GetWindowPlacement(hwnd, &wp);
// Send new positions and dimensions
char buffer[512] = {0x00};
WEBUI_SN_PRINTF_STATIC(buffer, sizeof(buffer), "%ld,%ld,%ld,%ld",
wp.rcNormalPosition.left, wp.rcNormalPosition.top, rect.right, rect.bottom);
// Packet Protocol Format:
// [...]
// [CMD]
// Send the packet
_webui_send_all(win, 0, WEBUI_CMD_WIN_RESIZED, buffer, _webui_strlen(buffer));
if (win) {
// Update drag positions and dimensions
if (_webui_mutex_is_connected(win, WEBUI_MUTEX_GET_STATUS)) {
RECT rect;
GetClientRect(hwnd, &rect);
WINDOWPLACEMENT wp;
wp.length = sizeof(WINDOWPLACEMENT);
GetWindowPlacement(hwnd, &wp);
// Send new positions and dimensions
char buffer[512] = {0x00};
WEBUI_SN_PRINTF_STATIC(buffer, sizeof(buffer), "%ld,%ld,%ld,%ld",
wp.rcNormalPosition.left, wp.rcNormalPosition.top, rect.right, rect.bottom);
// Packet Protocol Format:
// [...]
// [CMD]
// [x,y,width,height]
// Send the packet
_webui_send_all(win, 0, WEBUI_CMD_WIN_RESIZED, buffer, _webui_strlen(buffer));
}
}
break;
}