mirror of
https://github.com/taigrr/wtf
synced 2025-01-18 04:03:14 -08:00
12 lines
280 B
Go
12 lines
280 B
Go
// +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)
|
|
}
|