mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-08-03 17:26:08 -04:00
27 lines
595 B
C++
27 lines
595 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2018.
|
|
// Distributed under the terms of the MIT License.
|
|
// (See accompanying file LICENSE or copy at
|
|
// http://www.opensource.org/licenses/MIT)
|
|
//=======================================================================
|
|
|
|
#ifndef THOR_ACPICA_HPP
|
|
#define THOR_ACPICA_HPP
|
|
|
|
extern "C" {
|
|
|
|
#include "thor_acenv.hpp"
|
|
#include "thor_acenvex.hpp"
|
|
|
|
//ACPICA
|
|
#include <acpi.h>
|
|
#include <accommon.h>
|
|
|
|
} //end of extern "C"
|
|
|
|
#include <types.hpp>
|
|
|
|
constexpr const size_t FADT2_REVISION_ID = 3;
|
|
|
|
#endif
|