github.com/hspan/go-ole@v0.0.0/iconnectionpoint_func.go (about) 1 // +build !windows 2 3 package ole 4 5 import "unsafe" 6 7 func (v *IConnectionPoint) GetConnectionInterface(piid **GUID) int32 { 8 return int32(0) 9 } 10 11 func (v *IConnectionPoint) Advise(unknown *IUnknown) (uint32, error) { 12 return uint32(0), NewError(E_NOTIMPL) 13 } 14 15 func (v *IConnectionPoint) Unadvise(cookie uint32) error { 16 return NewError(E_NOTIMPL) 17 } 18 19 func (v *IConnectionPoint) EnumConnections(p *unsafe.Pointer) (err error) { 20 return NewError(E_NOTIMPL) 21 }