mirror of
https://github.com/status-im/consul.git
synced 2025-01-12 23:05:28 +00:00
26 lines
501 B
Go
26 lines
501 B
Go
|
// +build windows
|
||
|
|
||
|
package ole
|
||
|
|
||
|
import (
|
||
|
"syscall"
|
||
|
"unsafe"
|
||
|
)
|
||
|
|
||
|
func (v *IConnectionPointContainer) EnumConnectionPoints(points interface{}) error {
|
||
|
return NewError(E_NOTIMPL)
|
||
|
}
|
||
|
|
||
|
func (v *IConnectionPointContainer) FindConnectionPoint(iid *GUID, point **IConnectionPoint) (err error) {
|
||
|
hr, _, _ := syscall.Syscall(
|
||
|
v.VTable().FindConnectionPoint,
|
||
|
3,
|
||
|
uintptr(unsafe.Pointer(v)),
|
||
|
uintptr(unsafe.Pointer(iid)),
|
||
|
uintptr(unsafe.Pointer(point)))
|
||
|
if hr != 0 {
|
||
|
err = NewError(hr)
|
||
|
}
|
||
|
return
|
||
|
}
|