iinspectable_func.go 324 B

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