From f8e4eeb40558d4ea90850ae588e2117f94c7e77b Mon Sep 17 00:00:00 2001 From: Lea Anthony Date: Fri, 25 Jul 2025 07:49:13 +1000 Subject: [PATCH] Fix build --- v3/pkg/w32/timer.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/v3/pkg/w32/timer.go b/v3/pkg/w32/timer.go index 7f49f07fa..c95253e53 100644 --- a/v3/pkg/w32/timer.go +++ b/v3/pkg/w32/timer.go @@ -1,3 +1,5 @@ +//go:build windows + package w32 func SetTimer(hwnd HWND, nIDEvent uintptr, uElapse uint32, lpTimerFunc uintptr) uintptr { @@ -14,4 +16,4 @@ func KillTimer(hwnd HWND, nIDEvent uintptr) bool { uintptr(hwnd), nIDEvent) return ret != 0 -} \ No newline at end of file +}