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
12extern "C" {
13#endif
14
15struct scan_spots_struct {
16	uint32 start;
17	uint32 stop;
18	uint32 length;
19};
20
21acpi_descriptor_header *acpi_find_table(const char *signature);
22void acpi_init(void);
23
24#ifdef __cplusplus
25}
26#endif
27
28#endif	/* ACPI_H */
29