From e3a016b58e25bd42755e68be8b090ae116cd99a2 Mon Sep 17 00:00:00 2001 From: Jens <11560817+juwens@users.noreply.github.com> Date: Wed, 27 May 2026 13:12:18 +0200 Subject: [PATCH] gg: fix compiler error of ved on windows (adjust declaration of struct C.RECT from windef.h) (#27275) --- vlib/gg/gg.c.v | 1 + 1 file changed, 1 insertion(+) diff --git a/vlib/gg/gg.c.v b/vlib/gg/gg.c.v index 3bb45dba5..b300997ca 100644 --- a/vlib/gg/gg.c.v +++ b/vlib/gg/gg.c.v @@ -57,6 +57,7 @@ $if macos { } $if windows { + @[typedef] struct C.RECT { left i32 top i32 -- 2.39.5