mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-19 05:37:54 +00:00
661330a97a
Issue #4679
28 lines
530 B
C++
28 lines
530 B
C++
/*
|
|
* \brief Port of ACPICA library
|
|
* \author Alexander Boettcher
|
|
* \date 2016-11-14
|
|
*/
|
|
|
|
/*
|
|
* Copyright (C) 2016-2022 Genode Labs GmbH
|
|
*
|
|
* This file is part of the Genode OS framework, which is distributed
|
|
* under the terms of the GNU Affero General Public License version 3.
|
|
*/
|
|
|
|
#ifndef _INCLUDE__ACPICA__ACPICA_H_
|
|
#define _INCLUDE__ACPICA__ACPICA_H_
|
|
|
|
namespace Genode {
|
|
struct Env;
|
|
struct Allocator;
|
|
}
|
|
|
|
namespace Acpica {
|
|
|
|
void init(Genode::Env &, Genode::Allocator &);
|
|
}
|
|
|
|
#endif /* _INCLUDE__ACPICA__ACPICA_H_ */
|