mirror of https://github.com/ethereum/go-ethereum
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
413 B
19 lines
413 B
// +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)
|
|
}
|
|
|