5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-02 23:51:44 +08:00

chore: add build tags to win32 package

This commit is contained in:
Lea Anthony 2022-04-04 20:07:37 +10:00
parent 78c6705cc3
commit 95b70de01f
No known key found for this signature in database
GPG Key ID: 33DAF7BB90A58405
3 changed files with 10 additions and 2 deletions

View File

@ -1,8 +1,11 @@
//go:build windows
package win32
import (
"github.com/wailsapp/wails/v2/internal/system/operatingsystem"
"syscall"
"github.com/wailsapp/wails/v2/internal/system/operatingsystem"
)
type HRESULT int32

View File

@ -1,8 +1,11 @@
//go:build windows
package win32
import (
"golang.org/x/sys/windows/registry"
"unsafe"
"golang.org/x/sys/windows/registry"
)
type DWMWINDOWATTRIBUTE int32

View File

@ -1,3 +1,5 @@
//go:build windows
package win32
import (