24 lines
386 B
Go
24 lines
386 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package edge
|
|
|
|
import (
|
|
"github.com/wailsapp/go-webview2/internal/w32"
|
|
"unsafe"
|
|
)
|
|
|
|
func (e *Chromium) SetSize(bounds w32.Rect) {
|
|
if e.controller == nil {
|
|
return
|
|
}
|
|
|
|
e.controller.vtbl.PutBounds.Call(
|
|
uintptr(unsafe.Pointer(e.controller)),
|
|
uintptr(bounds.Left),
|
|
uintptr(bounds.Top),
|
|
uintptr(bounds.Right),
|
|
uintptr(bounds.Bottom),
|
|
)
|
|
}
|