mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 10:47:57 +08:00
38 lines
734 B
Go
38 lines
734 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"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
cef_version string
|
||
|
lib_build_version string
|
||
|
)
|
||
|
|
||
|
//cef version
|
||
|
func CEFVersion() string {
|
||
|
if cef_version == "" {
|
||
|
r1, _, _ := common.Proc(internale_CEFVersion).Call()
|
||
|
cef_version = api.GoStr(r1)
|
||
|
}
|
||
|
return cef_version
|
||
|
}
|
||
|
|
||
|
//lib build version
|
||
|
func LibBuildVersion() string {
|
||
|
if lib_build_version == "" {
|
||
|
r1, _, _ := common.Proc(internale_LibBuildVersion).Call()
|
||
|
lib_build_version = api.GoStr(r1)
|
||
|
}
|
||
|
return lib_build_version
|
||
|
}
|