5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-05 00:12:45 +08:00
wails/v3/examples/window/windows.go
2024-06-09 08:28:38 +10:00

12 lines
209 B
Go

//go:build windows
package main
import "github.com/wailsapp/wails/v3/pkg/w32"
func init() {
getExStyle = func() int {
return w32.WS_EX_TOOLWINDOW | w32.WS_EX_NOREDIRECTIONBITMAP | w32.WS_EX_TOPMOST
}
}