mirror of
https://github.com/gofiber/fiber.git
synced 2025-05-21 23:20:22 +00:00
* ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * ✨feature: print all routes message when server starts * 🐛fix: errors unhandled * 🐛fix: ignore child process and add some "-" to the table head * 🐛fix: add printRoutesMessage for listener and listenTLS
23 lines
470 B
Go
23 lines
470 B
Go
//go:build !windows
|
|
// +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)
|
|
}
|