aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/go-ole/go-ole/iconnectionpointcontainer_func.go
blob: 5dfa42aaebb781d31b39d4babf0ef10f025b1b34 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
// +build !windows

package ole

func (v *IConnectionPointContainer) EnumConnectionPoints(points interface{}) error {
    return NewError(E_NOTIMPL)
}

func (v *IConnectionPointContainer) FindConnectionPoint(iid *GUID, point **IConnectionPoint) error {
    return NewError(E_NOTIMPL)
}