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