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
start fleshing out the headers a little
[AROS.git]
/
rom
/
storage
/
includes
/
unit.h
blob
da463a1eff5c5c44764c7849514b9365b8e94edd
1
#if !defined(_STORAGE_UNIT_H)
2
#define _STORAGE_UNIT_H
3
4
/*
5
Definitions relating to storage units (i.e drives)
6
*/
7
8
struct
StorageUnit
9
{
10
struct
Node su_Node
;
// ln_Name points to the IDNode;
11
struct
StorageDevice
*
su_Device
;
12
struct
List su_Volumes
;
13
};
14
15
#endif