mirror of https://github.com/gofiber/fiber.git
12 lines
332 B
Go
12 lines
332 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package oleutil
|
|
|
|
import ole "github.com/gofiber/fiber/v3/internal/go-ole"
|
|
|
|
// ConnectObject creates a connection point between two services for communication.
|
|
func ConnectObject(disp *ole.IDispatch, iid *ole.GUID, idisp interface{}) (uint32, error) {
|
|
return 0, ole.NewError(ole.E_NOTIMPL)
|
|
}
|