mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-07-10 23:09:15 +00:00
Update files
This commit is contained in:
24
include/power.hpp
Normal file
24
include/power.hpp
Normal file
@ -0,0 +1,24 @@
|
||||
#ifndef __FENNIX_KERNEL_POWER_H__
|
||||
#define __FENNIX_KERNEL_POWER_H__
|
||||
|
||||
#include <types.h>
|
||||
|
||||
namespace Power
|
||||
{
|
||||
class Power
|
||||
{
|
||||
private:
|
||||
// specific for 64 and 32 bit
|
||||
void *acpi;
|
||||
void *dsdt;
|
||||
void *madt;
|
||||
|
||||
public:
|
||||
void Reboot();
|
||||
void Shutdown();
|
||||
Power();
|
||||
~Power();
|
||||
};
|
||||
}
|
||||
|
||||
#endif // !__FENNIX_KERNEL_POWER_H__
|
Reference in New Issue
Block a user