Preparations for release.
[AROS.git] / compiler / include / resources / efi.h
blobc137873556840bda1bf4c1c548deea48720555c3
1 #ifndef RESOURCES_EFI_H
2 #define RESOURCES_EFI_H
4 /*
5 Copyright © 2011-2012, The AROS Development Team. All rights reserved.
6 $Id$
8 Desc: efi.resource definitions
9 Lang: english
12 #include <exec/lists.h>
13 #include <exec/interrupts.h>
14 #include <hardware/efi/efi.h>
16 struct EFIBase
18 struct Node node; /* Resource node */
19 struct Interrupt reset_handler; /* Reboots or powers off */
20 struct EFI_SystemTable *System; /* System table pointer */
21 struct EFI_Runtime *Runtime; /* Runtime services pointer */
24 #endif