/* * Copyright 2005, Axel Dörfler, axeld@pinc-software.de. All rights reserved. * Distributed under the terms of the MIT License. */ #ifndef ACPI_H #define ACPI_H #include #include #ifdef __cplusplus extern "C" { #endif acpi_descriptor_header *acpi_find_table(const char *signature); void acpi_init(void); #ifdef __cplusplus } #endif #endif /* ACPI_H */