//go:build windows // +build windows package edge import ( "unsafe" "github.com/wailsapp/go-webview2/internal/w32" "golang.org/x/sys/windows" ) func (e *Chromium) SetSize(bounds w32.Rect) { if e.controller == nil { return } words := (*[2]uintptr)(unsafe.Pointer(&bounds)) hr, _, _ := e.controller.vtbl.PutBounds.Call( uintptr(unsafe.Pointer(e.controller)), words[0], words[1], ) if windows.Handle(hr) != windows.S_OK { e.errorCallback(windows.Errno(hr)) } }