mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-04-26 03:22:25 +00:00
* dashboard: footer, deep state update * dashboard: resolve asset path * dashboard: prevent state update on every reconnection * dashboard: fix linter issue * dashboard, cmd: minor UI fix, include commit hash * dashboard: gitCommit renamed to commit * dashboard: move the geth version to the right, make commit optional * dashboard: memory, traffic and CPU on footer * dashboard: fix merge * dashboard: CPU, diskIO on footer * dashboard: rename variables, use group declaration * dashboard: docs
17 lines
354 B
Go
17 lines
354 B
Go
package ole
|
|
|
|
import "unsafe"
|
|
|
|
type IConnectionPointContainer struct {
|
|
IUnknown
|
|
}
|
|
|
|
type IConnectionPointContainerVtbl struct {
|
|
IUnknownVtbl
|
|
EnumConnectionPoints uintptr
|
|
FindConnectionPoint uintptr
|
|
}
|
|
|
|
func (v *IConnectionPointContainer) VTable() *IConnectionPointContainerVtbl {
|
|
return (*IConnectionPointContainerVtbl)(unsafe.Pointer(v.RawVTable))
|
|
}
|