forked from AbleOS/ableos
31 lines
421 B
Plaintext
31 lines
421 B
Plaintext
//! This is a reserved file for use with the AbleOS Clustering System
|
|
|
|
HostID := int
|
|
ID := int
|
|
|
|
FileID := struct {
|
|
host_id: HostID,
|
|
id: ID,
|
|
}
|
|
|
|
// A DeviceID points to a specific device in the ACS.
|
|
DeviceID := struct {
|
|
host_id: HostID,
|
|
id: ID,
|
|
}
|
|
DiskID := DeviceID
|
|
|
|
BufferID := struct {
|
|
host_id: HostID,
|
|
id: ID,
|
|
}
|
|
|
|
ProcessID := struct {
|
|
host_id: HostID,
|
|
id: ID,
|
|
}
|
|
|
|
WindowID := struct {
|
|
host_id: HostID,
|
|
id: ID,
|
|
} |