xref: /haiku/src/system/boot/platform/efi/acpi.h (revision 4a55cc230cf7566cadcbb23b1928eefff8aea9a2)
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 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