blob: b8fbbe319f1acc4dbf104f208e724524b7c1b225 [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// +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}