energy/cef/types-printjob-callback.go

45 lines
843 B
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/common/imports"
)
// Instance 实例
func (m *ICefPrintJobCallback) Instance() uintptr {
if m == nil {
return 0
}
return uintptr(m.instance)
}
func (m *ICefPrintJobCallback) Free() {
if m.instance != nil {
m.base.Free(m.Instance())
m.instance = nil
}
}
func (m *ICefPrintJobCallback) IsValid() bool {
if m == nil || m.instance == nil {
return false
}
return m.instance != nil
}
func (m *ICefPrintJobCallback) Cont() {
if !m.IsValid() {
return
}
imports.Proc(internale_CefPrintJobCallback_Cont).Call(m.Instance())
}