forked from cerc-io/plugeth
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
13 lines
210 B
Go
13 lines
210 B
Go
// +build amd64
|
|
|
|
package ole
|
|
|
|
type VARIANT struct {
|
|
VT VT // 2
|
|
wReserved1 uint16 // 4
|
|
wReserved2 uint16 // 6
|
|
wReserved3 uint16 // 8
|
|
Val int64 // 16
|
|
_ [8]byte // 24
|
|
}
|