mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 18:57:39 +08:00
03e3f74c7f
2. 增加内置资源http服务
31 lines
817 B
Go
31 lines
817 B
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under GNU General Public License v3.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
import (
|
|
. "github.com/energye/energy/common"
|
|
"github.com/energye/golcl/lcl/api"
|
|
)
|
|
|
|
func _CEFV8ValueRef_SetCommonRootName(commonRootName string) {
|
|
Proc("CEFV8ValueRef_SetCommonRootName").Call(api.GoStrToDStr(commonRootName))
|
|
}
|
|
|
|
func _CEFV8ValueRef_SetObjectRootName(objectRootName string) {
|
|
Proc("CEFV8ValueRef_SetObjectRootName").Call(api.GoStrToDStr(objectRootName))
|
|
}
|
|
|
|
func _CEFV8ValueRef_CommonValueBindInfo(binds uintptr) {
|
|
Proc("CEFV8ValueRef_CommonValueBindInfo").Call(binds)
|
|
}
|
|
|
|
func _CEFV8ValueRef_ObjectValueBindInfo(CefObject uintptr) {
|
|
Proc("CEFV8ValueRef_ObjectValueBindInfo").Call(CefObject)
|
|
}
|