mirror of
https://github.com/status-im/status-go.git
synced 2025-01-18 18:55:47 +00:00
2f539d3bd2
Go ens needs to be updated to be compatible with the lastest geth version
22 lines
392 B
Go
22 lines
392 B
Go
package ole
|
|
|
|
import "unsafe"
|
|
|
|
type IProvideClassInfo struct {
|
|
IUnknown
|
|
}
|
|
|
|
type IProvideClassInfoVtbl struct {
|
|
IUnknownVtbl
|
|
GetClassInfo uintptr
|
|
}
|
|
|
|
func (v *IProvideClassInfo) VTable() *IProvideClassInfoVtbl {
|
|
return (*IProvideClassInfoVtbl)(unsafe.Pointer(v.RawVTable))
|
|
}
|
|
|
|
func (v *IProvideClassInfo) GetClassInfo() (cinfo *ITypeInfo, err error) {
|
|
cinfo, err = getClassInfo(v)
|
|
return
|
|
}
|