mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
434 B
20 lines
434 B
package ole
|
|
|
|
import "unsafe"
|
|
|
|
type IConnectionPoint struct {
|
|
IUnknown
|
|
}
|
|
|
|
type IConnectionPointVtbl struct {
|
|
IUnknownVtbl
|
|
GetConnectionInterface uintptr
|
|
GetConnectionPointContainer uintptr
|
|
Advise uintptr
|
|
Unadvise uintptr
|
|
EnumConnections uintptr
|
|
}
|
|
|
|
func (v *IConnectionPoint) VTable() *IConnectionPointVtbl {
|
|
return (*IConnectionPointVtbl)(unsafe.Pointer(v.RawVTable))
|
|
}
|
|
|