mirror of
https://github.com/status-im/consul.git
synced 2025-01-11 06:16:08 +00:00
19 lines
316 B
Go
19 lines
316 B
Go
package ole
|
|
|
|
import "unsafe"
|
|
|
|
type IInspectable struct {
|
|
IUnknown
|
|
}
|
|
|
|
type IInspectableVtbl struct {
|
|
IUnknownVtbl
|
|
GetIIds uintptr
|
|
GetRuntimeClassName uintptr
|
|
GetTrustLevel uintptr
|
|
}
|
|
|
|
func (v *IInspectable) VTable() *IInspectableVtbl {
|
|
return (*IInspectableVtbl)(unsafe.Pointer(v.RawVTable))
|
|
}
|