energy/cef/cef-callback.go

27 lines
512 B
Go
Raw Normal View History

2022-10-04 13:21:05 +08:00
//----------------------------------------
//
// Copyright © yanghy. All Rights Reserved.
//
2022-10-04 16:38:43 +08:00
// Licensed under GNU General Public License v3.0
2022-10-04 13:21:05 +08:00
//
//----------------------------------------
package cef
2022-10-04 22:34:57 +08:00
import (
. "github.com/energye/energy/common"
2022-10-04 22:34:57 +08:00
"unsafe"
)
2022-10-04 13:21:05 +08:00
type ICefCallback struct {
instance unsafe.Pointer
2022-10-04 13:21:05 +08:00
}
func (m *ICefCallback) Cont() {
Proc(internale_cefCallback_Cont).Call(uintptr(m.instance))
2022-10-04 13:21:05 +08:00
}
func (m *ICefCallback) Cancel() {
Proc(internale_cefCallback_Cancel).Call(uintptr(m.instance))
2022-10-04 13:21:05 +08:00
}