github.com/hspan/go-ole@v0.0.0/oleutil/connection_func.go (about)

     1  // +build !windows
     2  
     3  package oleutil
     4  
     5  import ole "github.com/hspan/go-ole"
     6  
     7  // ConnectObject creates a connection point between two services for communication.
     8  func ConnectObject(disp *ole.IDispatch, iid *ole.GUID, idisp interface{}) (uint32, error) {
     9  	return 0, ole.NewError(ole.E_NOTIMPL)
    10  }