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.
21 lines
450 B
21 lines
450 B
// +build !windows
|
|
|
|
package ole
|
|
|
|
import "unsafe"
|
|
|
|
func (v *IConnectionPoint) GetConnectionInterface(piid **GUID) int32 {
|
|
return int32(0)
|
|
}
|
|
|
|
func (v *IConnectionPoint) Advise(unknown *IUnknown) (uint32, error) {
|
|
return uint32(0), NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (v *IConnectionPoint) Unadvise(cookie uint32) error {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (v *IConnectionPoint) EnumConnections(p *unsafe.Pointer) (err error) {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|