AI
AIGIT · AI 工具站
aigit.cc
首页
精品推荐
AI成品工具
提示词
返回 DeepSeek-Reasonix
COREWEBVIEW2_BOUNDS_MODE.go
根目录
/
desktop
/
third_party
/
go-webview2
/
pkg
/
edge
/
COREWEBVIEW2_BOUNDS_MODE.go
1
//go:build windows
2
3
package edge
4
5
type COREWEBVIEW2_BOUNDS_MODE uint32
6
7
const (
8
COREWEBVIEW2_BOUNDS_MODE_USE_RAW_PIXELS = 0
9
COREWEBVIEW2_BOUNDS_MODE_USE_RASTERIZATION_SCALE = 1
10
)
11
11 lines
GO