mirror of
https://github.com/status-im/consul.git
synced 2025-01-13 15:26:48 +00: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)
|
|
}
|