github.com/hspan/go-ole@v0.0.0/iinspectable_func.go (about)

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