[v3 windows] Moved w32 from internal to pkg so it may be used by applications

This commit is contained in:
Lea Anthony 2023-04-30 10:02:00 +10:00 committed by Misite Bao
commit 728e2019d8
28 changed files with 3 additions and 3 deletions

View file

@ -4,11 +4,11 @@ package application
import (
"github.com/wailsapp/wails/v3/pkg/events"
"github.com/wailsapp/wails/v3/pkg/w32"
"syscall"
"unsafe"
"github.com/samber/lo"
"github.com/wailsapp/wails/v3/internal/w32"
)
var windowClassName = lo.Must(syscall.UTF16PtrFromString("WailsWebviewWindow"))

View file

@ -3,13 +3,13 @@
package application
import (
"github.com/wailsapp/wails/v3/pkg/w32"
"runtime"
"sort"
"syscall"
"unsafe"
"github.com/samber/lo"
"github.com/wailsapp/wails/v3/internal/w32"
)
var (

View file

@ -5,8 +5,8 @@ package application
import (
"errors"
"fmt"
"github.com/wailsapp/wails/v3/internal/w32"
"github.com/wailsapp/wails/v3/pkg/events"
"github.com/wailsapp/wails/v3/pkg/w32"
"syscall"
"unsafe"