idispatch_func.go 474 B

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