mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-21 00:51:11 +00:00
84ff4c5b14
Upstream changes from ethereum/go-ethereum Former-commit-id: b40212f60d4e0a11e783a362886c7db8fb9c54f9 [formerly a2112a830d4047afa18c31243c2a506f80d4de12] Former-commit-id: 4c9a4d5662038dd26bda5d3343f231795c702b02
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)
|
|
}
|