2018-04-04 09:32:15 +02:00

22 lines
482 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 ACPI_HPP
#define ACPI_HPP
namespace acpi {
void init();
bool initialized();
void shutdown();
bool reboot();
} //end of acpi namespace
#endif