- Removed unused HandleEvent method.
[AROS.git] / compiler / include / hardware / openfirmware.h
blob6b4a8cce4658cbe2e9ecf6464d8affafc57d0192
1 #ifndef HARDWARE_OPENFIRMWARE_H
2 #define HARDWARE_OPENFIRMWARE_H
4 #include <exec/lists.h>
6 struct OFWNode
8 struct MinNode on_node;
9 char *on_name;
10 struct MinList on_children;
11 struct MinList on_properties;
13 uint8_t on_storage[];
16 struct OFWProperty
18 struct MinNode op_node;
19 char *op_name;
20 uint32_t op_length;
21 void *op_value;
23 uint8_t op_storage[];
26 #endif