24 lines
362 B
Go
24 lines
362 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package edge
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"github.com/wailsapp/go-webview2/internal/w32"
|
|
)
|
|
|
|
func (e *Chromium) SetSize(bounds w32.Rect) {
|
|
if e.controller == nil {
|
|
return
|
|
}
|
|
|
|
words := (*[2]uintptr)(unsafe.Pointer(&bounds))
|
|
e.controller.vtbl.PutBounds.Call(
|
|
uintptr(unsafe.Pointer(e.controller)),
|
|
words[0],
|
|
words[1],
|
|
)
|
|
}
|