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

     1  // +build !windows
     2  
     3  package ole
     4  
     5  func getIDsOfName(disp *IDispatch, names []string) ([]int32, error) {
     6  	return []int32{}, NewError(E_NOTIMPL)
     7  }
     8  
     9  func getTypeInfoCount(disp *IDispatch) (uint32, error) {
    10  	return uint32(0), NewError(E_NOTIMPL)
    11  }
    12  
    13  func getTypeInfo(disp *IDispatch) (*ITypeInfo, error) {
    14  	return nil, NewError(E_NOTIMPL)
    15  }
    16  
    17  func invoke(disp *IDispatch, dispid int32, dispatch int16, params ...interface{}) (*VARIANT, error) {
    18  	return nil, NewError(E_NOTIMPL)
    19  }