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
17 lines
358 B
Go
17 lines
358 B
Go
// +build windows
|
|
|
|
package ole
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
var (
|
|
modcombase = syscall.NewLazyDLL("combase.dll")
|
|
modkernel32, _ = syscall.LoadDLL("kernel32.dll")
|
|
modole32, _ = syscall.LoadDLL("ole32.dll")
|
|
modoleaut32, _ = syscall.LoadDLL("oleaut32.dll")
|
|
modmsvcrt, _ = syscall.LoadDLL("msvcrt.dll")
|
|
moduser32, _ = syscall.LoadDLL("user32.dll")
|
|
)
|