2024-09-17 08:01:16 -05:00
|
|
|
//! This is a reserved file for use with the AbleOS Clustering System
|
|
|
|
|
|
|
|
HostID := int
|
2024-09-17 12:08:19 -05:00
|
|
|
|
|
|
|
FileID := struct {
|
|
|
|
host_id: HostID,
|
|
|
|
id: int,
|
|
|
|
}
|
|
|
|
|
2024-09-17 08:01:16 -05:00
|
|
|
// A DeviceID points to a specific device in the ACS.
|
|
|
|
DeviceID := struct {
|
|
|
|
host_id: HostID,
|
|
|
|
id: int,
|
2024-09-17 09:39:46 -05:00
|
|
|
}
|
|
|
|
|
2024-09-17 09:52:27 -05:00
|
|
|
DiskID := DeviceID
|