Record uacpi_resources

struct uacpi_resources {
  uacpi_size length;
  uacpi_resource* entries;
  /* Full declaration omitted */ 
}

Fields

uacpi_size length

Length of the 'entries' array in BYTES (NOT the count of resources),

see comment above 'entries' for more information.

uacpi_resource* entries

Resources are variable length! See UACPI_NEXT_RESOURCE to see how to

retrieve the next resource. You can alternatively use uacpi_for_each_resource instead of iterating manually. Resources are guaranteed to be naturally aligned and are always terminated by a resource of type UACPI_RESOURCE_TYPE_END_TAG.