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
37 lines
842 B
Go
37 lines
842 B
Go
// +build !windows
|
|
|
|
package ole
|
|
|
|
// RoInitialize
|
|
func RoInitialize(thread_type uint32) (err error) {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
// RoActivateInstance
|
|
func RoActivateInstance(clsid string) (ins *IInspectable, err error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
// RoGetActivationFactory
|
|
func RoGetActivationFactory(clsid string, iid *GUID) (ins *IInspectable, err error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
// HString is handle string for pointers.
|
|
type HString uintptr
|
|
|
|
// NewHString returns a new HString for Go string.
|
|
func NewHString(s string) (hstring HString, err error) {
|
|
return HString(uintptr(0)), NewError(E_NOTIMPL)
|
|
}
|
|
|
|
// DeleteHString deletes HString.
|
|
func DeleteHString(hstring HString) (err error) {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
// String returns Go string value of HString.
|
|
func (h HString) String() string {
|
|
return ""
|
|
}
|