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
20 lines
473 B
Go
20 lines
473 B
Go
// +build !windows
|
|
|
|
package ole
|
|
|
|
func getIDsOfName(disp *IDispatch, names []string) ([]int32, error) {
|
|
return []int32{}, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func getTypeInfoCount(disp *IDispatch) (uint32, error) {
|
|
return uint32(0), NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func getTypeInfo(disp *IDispatch) (*ITypeInfo, error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func invoke(disp *IDispatch, dispid int32, dispatch int16, params ...interface{}) (*VARIANT, error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|