platform_windows: move extra syso inclusion out of main

This commit is contained in:
mappu 2024-06-23 13:06:41 +12:00
parent a47898e099
commit 0363bc65f4
2 changed files with 5 additions and 1 deletions

View File

@ -5,7 +5,6 @@ import (
"strings"
"unsafe"
_ "github.com/ying32/govcl/pkgs/winappres" // Extra _syso files for Windows
"github.com/ying32/govcl/vcl"
"github.com/ying32/govcl/vcl/types"
)

5
platform_windows.go Normal file
View File

@ -0,0 +1,5 @@
package main
import (
_ "github.com/ying32/govcl/pkgs/winappres" // Extra _syso files for Windows
)