repo.or.cz
/
AROS.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
FreeArgs() doesn't need to be mentioned in its own 'SEE ALSO' list.
[AROS.git]
/
compiler
/
include
/
hardware
/
openfirmware.h
blob
6b4a8cce4658cbe2e9ecf6464d8affafc57d0192
1
#ifndef HARDWARE_OPENFIRMWARE_H
2
#define HARDWARE_OPENFIRMWARE_H
3
4
#include <exec/lists.h>
5
6
struct
OFWNode
7
{
8
struct
MinNode on_node
;
9
char
*
on_name
;
10
struct
MinList on_children
;
11
struct
MinList on_properties
;
12
13
uint8_t
on_storage
[];
14
};
15
16
struct
OFWProperty
17
{
18
struct
MinNode op_node
;
19
char
*
op_name
;
20
uint32_t
op_length
;
21
void
*
op_value
;
22
23
uint8_t
op_storage
[];
24
};
25
26
#endif