forked from xt-sys/exectos
Add initial version of ACPI module
This commit is contained in:
39
xtldr/modules/acpi/includes/acpi.h
Normal file
39
xtldr/modules/acpi/includes/acpi.h
Normal file
@@ -0,0 +1,39 @@
|
||||
/**
|
||||
* PROJECT: ExectOS
|
||||
* COPYRIGHT: See COPYING.md in the top level directory
|
||||
* FILE: xtldr/modules/acpi/includes/acpi.h
|
||||
* DESCRIPTION: XTLDR ACPI module header file
|
||||
* DEVELOPERS: Rafal Kupiec <belliash@codingworkshop.eu.org>
|
||||
*/
|
||||
|
||||
#ifndef __XTLDR_ACPI_ACPI_H
|
||||
#define __XTLDR_ACPI_ACPI_H
|
||||
|
||||
#include <xtblapi.h>
|
||||
#include <globals.h>
|
||||
|
||||
|
||||
/* ACPI module routines forward references */
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
AcGetAcpiTable(OUT PVOID *AcpiTable);
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
AcGetRsdpTable(OUT PVOID *AcpiTable);
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
AcGetXsdpTable(OUT PVOID *AcpiTable);
|
||||
|
||||
XTCDECL
|
||||
UCHAR
|
||||
AcpChecksumTable(IN PVOID Buffer,
|
||||
IN UINT_PTR Size);
|
||||
|
||||
XTCDECL
|
||||
EFI_STATUS
|
||||
XtLdrModuleMain(IN EFI_HANDLE ImageHandle,
|
||||
IN PEFI_SYSTEM_TABLE SystemTable);
|
||||
|
||||
#endif/* __XTLDR_ACPI_ACPI_H */
|
Reference in New Issue
Block a user