From 0c0c97d80f19bee207d72430d5191fbf0fcaa459 Mon Sep 17 00:00:00 2001 From: Armin Novak Date: Wed, 2 Jun 2021 15:16:49 +0200 Subject: [PATCH] Fixed missing include for legacy os --- client/Windows/wf_event.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/Windows/wf_event.c b/client/Windows/wf_event.c index 7712ee0a4..86fd07563 100644 --- a/client/Windows/wf_event.c +++ b/client/Windows/wf_event.c @@ -25,6 +25,7 @@ #include +#include #include #include "wf_client.h" @@ -256,7 +257,7 @@ static void wf_sizing(wfContext* wfc, WPARAM wParam, LPARAM lParam) } } -void wf_send_resize(wfContext* wfc) +static void wf_send_resize(wfContext* wfc) { RECT windowRect; DISPLAY_CONTROL_MONITOR_LAYOUT* layout;