start fleshing out the headers a little
[AROS.git] / rom / storage / includes / unit.h
blobda463a1eff5c5c44764c7849514b9365b8e94edd
1 #if !defined(_STORAGE_UNIT_H)
2 #define _STORAGE_UNIT_H
4 /*
5 Definitions relating to storage units (i.e drives)
6 */
8 struct StorageUnit
10 struct Node su_Node; // ln_Name points to the IDNode;
11 struct StorageDevice *su_Device;
12 struct List su_Volumes;
15 #endif