xref: /haiku/src/system/boot/platform/efi/acpi.h (revision 9642f7705b27e5c270c15fa526d14e1848c2c27d)
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 <arch/x86/arch_acpi.h>
10 
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14 
15 acpi_descriptor_header *acpi_find_table(const char *signature);
16 void acpi_init(void);
17 
18 #ifdef __cplusplus
19 }
20 #endif
21 
22 #endif	/* ACPI_H */
23