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
20 lines
413 B
Go
20 lines
413 B
Go
// +build !windows
|
|
|
|
package ole
|
|
|
|
func (enum *IEnumVARIANT) Clone() (*IEnumVARIANT, error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (enum *IEnumVARIANT) Reset() error {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (enum *IEnumVARIANT) Skip(celt uint) error {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (enum *IEnumVARIANT) Next(celt uint) (VARIANT, uint, error) {
|
|
return NewVariant(VT_NULL, int64(0)), 0, NewError(E_NOTIMPL)
|
|
}
|