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
21 lines
493 B
Go
21 lines
493 B
Go
//go:build !windows
|
|
// +build !windows
|
|
|
|
package ole
|
|
|
|
func getIDsOfName(disp *IDispatch, names []string) ([]int32, error) {
|
|
return []int32{}, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func getTypeInfoCount(disp *IDispatch) (uint32, error) {
|
|
return uint32(0), NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func getTypeInfo(disp *IDispatch) (*ITypeInfo, error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|
|
|
|
func invoke(disp *IDispatch, dispid int32, dispatch int16, params ...interface{}) (*VARIANT, error) {
|
|
return nil, NewError(E_NOTIMPL)
|
|
}
|