mirror of
https://gitee.com/energye/energy.git
synced 2024-12-02 19:57:48 +08:00
10 lines
138 B
Go
10 lines
138 B
Go
package cef
|
|
|
|
// Instance 实例
|
|
func (m *ICefBinaryValue) Instance() uintptr {
|
|
if m == nil {
|
|
return 0
|
|
}
|
|
return uintptr(m.instance)
|
|
}
|