mirror of
https://gitee.com/energye/energy.git
synced 2024-12-15 09:51:35 +08:00
22 lines
351 B
Go
22 lines
351 B
Go
|
//----------------------------------------
|
||
|
//
|
||
|
// Copyright © yanghy. All Rights Reserved.
|
||
|
//
|
||
|
// Licensed under Apache License 2.0
|
||
|
//
|
||
|
//----------------------------------------
|
||
|
|
||
|
package cef
|
||
|
|
||
|
import (
|
||
|
"github.com/energye/golcl/lcl"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
type BaseComponent struct {
|
||
|
lcl.TComponent
|
||
|
procName string
|
||
|
instance uintptr
|
||
|
ptr unsafe.Pointer
|
||
|
}
|