mirror of
https://gitee.com/energye/energy.git
synced 2024-11-30 02:37:46 +08:00
53 lines
1.1 KiB
Go
53 lines
1.1 KiB
Go
//----------------------------------------
|
|
//
|
|
// Copyright © yanghy. All Rights Reserved.
|
|
//
|
|
// Licensed under Apache License Version 2.0, January 2004
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
//----------------------------------------
|
|
|
|
package cef
|
|
|
|
import (
|
|
"github.com/energye/energy/v2/cef/internal/def"
|
|
"github.com/energye/energy/v2/common/imports"
|
|
)
|
|
|
|
// Instance 实例
|
|
func (m *ICefGetExtensionResourceCallback) Instance() uintptr {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
return uintptr(m.instance)
|
|
}
|
|
|
|
func (m *ICefGetExtensionResourceCallback) Free() {
|
|
if m.instance != nil {
|
|
m.base.Free(m.Instance())
|
|
m.instance = nil
|
|
}
|
|
}
|
|
|
|
func (m *ICefGetExtensionResourceCallback) IsValid() bool {
|
|
if m == nil || m.instance == nil {
|
|
return false
|
|
}
|
|
return m.instance != nil
|
|
}
|
|
|
|
func (m *ICefGetExtensionResourceCallback) Cont(stream *ICefStreamReader) {
|
|
if !m.IsValid() {
|
|
return
|
|
}
|
|
imports.Proc(def.CefGetExtensionResourceCallback_Cont).Call(m.Instance(), stream.Instance())
|
|
}
|
|
|
|
func (m *ICefGetExtensionResourceCallback) Cancel() {
|
|
if !m.IsValid() {
|
|
return
|
|
}
|
|
imports.Proc(def.CefGetExtensionResourceCallback_Cancel).Call(m.Instance())
|
|
}
|