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