energy/cef/types-auth-callback.go

49 lines
1.0 KiB
Go
Raw Normal View History

2023-05-31 17:41:14 +08:00
//----------------------------------------
//
// 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"
2023-05-31 18:00:34 +08:00
"github.com/energye/energy/v2/common/imports"
2023-05-31 17:41:14 +08:00
"github.com/energye/golcl/lcl/api"
)
// Instance 实例
func (m *ICefAuthCallback) Instance() uintptr {
if m == nil {
return 0
}
return uintptr(m.instance)
}
func (m *ICefAuthCallback) Free() {
m.base.Free(m.Instance())
}
func (m *ICefAuthCallback) IsValid() bool {
if m == nil || m.instance == nil {
return false
}
return m.instance != nil
}
func (m *ICefAuthCallback) Cont(username, password string) {
if m.instance != nil {
imports.Proc(def.CefAuthCallback_Cont).Call(m.Instance(), api.PascalStr(username), api.PascalStr(password))
2023-05-31 17:41:14 +08:00
}
}
func (m *ICefAuthCallback) Cancel() {
if m.instance != nil {
imports.Proc(def.CefAuthCallback_Cancel).Call(m.Instance())
2023-05-31 17:41:14 +08:00
}
}