github.com/gofiber/fiber/v2@v2.47.0/internal/go-ole/iinspectable_func.go (about)

     1  //go:build !windows
     2  // +build !windows
     3  
     4  package ole
     5  
     6  func (v *IInspectable) GetIids() ([]*GUID, error) {
     7  	return []*GUID{}, NewError(E_NOTIMPL)
     8  }
     9  
    10  func (v *IInspectable) GetRuntimeClassName() (string, error) {
    11  	return "", NewError(E_NOTIMPL)
    12  }
    13  
    14  func (v *IInspectable) GetTrustLevel() (uint32, error) {
    15  	return uint32(0), NewError(E_NOTIMPL)
    16  }