1 /* 2 * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. 3 * Distributed under the terms of the MIT License. 4 */ 5 #ifndef ACPI_H 6 #define ACPI_H 7 8 #include <SupportDefs.h> 9 #include <kernel/acpi.h> 10 11 #ifdef __cplusplus 12 extern "C" { 13 #endif 14 15 struct scan_spots_struct { 16 uint32 start; 17 uint32 stop; 18 uint32 length; 19 }; 20 21 acpi_descriptor_header *acpi_find_table(const char *signature); 22 void acpi_init(void); 23 24 #ifdef __cplusplus 25 } 26 #endif 27 28 #endif /* ACPI_H */ 29