mirror of
https://gitlab.com/pulsechaincom/go-pulse.git
synced 2025-01-10 12:41:21 +00:00
05ade19302
* 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
21 lines
434 B
Go
21 lines
434 B
Go
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))
|
|
}
|