mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-10 01:36: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)
|
|
}
|