energy/cef/types-scheme-registrar.go
2023-08-27 16:46:09 +08:00

49 lines
1.2 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"
"github.com/energye/energy/v2/consts"
"github.com/energye/golcl/lcl/api"
)
// Instance 实例
func (m *TCefSchemeRegistrarRef) Instance() uintptr {
if m == nil {
return 0
}
return uintptr(m.instance)
}
func (m *TCefSchemeRegistrarRef) Free() {
if m.instance != nil {
m.instance = nil
}
}
func (m *TCefSchemeRegistrarRef) IsValid() bool {
if m == nil || m.instance == nil {
return false
}
return m.instance != nil
}
// AddCustomScheme 注册自定义方案。不应为内置的HTTP、HTTPS、FILE、FTP、ABOUT和DATA方案调用此函数。
func (m *TCefSchemeRegistrarRef) AddCustomScheme(schemeName string, options consts.CefSchemeOption) bool {
if !m.IsValid() {
return false
}
r1, _, _ := imports.Proc(def.SchemeRegistrarRef_AddCustomScheme).Call(m.Instance(), api.PascalStr(schemeName), uintptr(options))
return api.GoBool(r1)
}