blob: 5414dc3cd3bc3ea00399db79e4cd1537c5140fa0 [file] [log] [blame]
Serge Bazanskicc25bdf2018-10-25 14:02:58 +02001// +build !windows
2
3package ole
4
5import "unsafe"
6
7func (v *IConnectionPoint) GetConnectionInterface(piid **GUID) int32 {
8 return int32(0)
9}
10
11func (v *IConnectionPoint) Advise(unknown *IUnknown) (uint32, error) {
12 return uint32(0), NewError(E_NOTIMPL)
13}
14
15func (v *IConnectionPoint) Unadvise(cookie uint32) error {
16 return NewError(E_NOTIMPL)
17}
18
19func (v *IConnectionPoint) EnumConnections(p *unsafe.Pointer) (err error) {
20 return NewError(E_NOTIMPL)
21}