iconnectionpoint_func.go 451 B

123456789101112131415161718192021
  1. //go:build !windows
  2. package ole
  3. import "unsafe"
  4. func (v *IConnectionPoint) GetConnectionInterface(piid **GUID) int32 {
  5. return int32(0)
  6. }
  7. func (v *IConnectionPoint) Advise(unknown *IUnknown) (uint32, error) {
  8. return uint32(0), NewError(E_NOTIMPL)
  9. }
  10. func (v *IConnectionPoint) Unadvise(cookie uint32) error {
  11. return NewError(E_NOTIMPL)
  12. }
  13. func (v *IConnectionPoint) EnumConnections(p *unsafe.Pointer) (err error) {
  14. return NewError(E_NOTIMPL)
  15. }