http-server-status/vendor/github.com/go-ole/go-ole/iinspectable.go

19 lines
316 B
Go
Raw Normal View History

2021-09-20 09:28:00 +00:00
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))
}