github.com/gofiber/fiber/v2@v2.47.0/internal/go-ole/iconnectionpoint_func.go (about)

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