mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
2f539d3bd2
Go ens needs to be updated to be compatible with the lastest geth version
22 lines
450 B
Go
22 lines
450 B
Go
// +build !windows
|
|
|
|
package ole
|
|
|
|
import "unsafe"
|
|
|
|
func (v *IConnectionPoint) GetConnectionInterface(piid **GUID) int32 {
|
|
return int32(0)
|
|
}
|
|
|
|
func (v *IConnectionPoint) Advise(unknown *IUnknown) (uint32, error) {
|
|
return uint32(0), NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (v *IConnectionPoint) Unadvise(cookie uint32) error {
|
|
return NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func (v *IConnectionPoint) EnumConnections(p *unsafe.Pointer) (err error) {
|
|
return NewError(E_NOTIMPL)
|
|
}
|