energy/cef/cef-proc.go
2022-12-07 21:29:38 +08:00

31 lines
716 B
Go

//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
// Licensed under GNU General Public License v3.0
//
//----------------------------------------
package cef
import (
. "github.com/energye/energy/common"
)
//--------TCEFWindowParent proc end--------
// 针对 MacOSX 设置命令行参数
//
// 没找到什么好的方式,只能这样设置
func setMacOSXCommandLine(commandLine uintptr) {
Proc(internale_SetMacOSXCommandLine).Call(commandLine)
}
func AddGoForm(windowId int32, instance uintptr) {
Proc(internale_CEF_AddGoForm).Call(uintptr(windowId), instance)
}
func RemoveGoForm(windowId int32) {
Proc(internale_CEF_RemoveGoForm).Call(uintptr(windowId))
}