1
0
Fork 0
forked from AbleOS/ableos
ableos_time/sysdata/libraries/stn/src/acs.hb

31 lines
421 B
Plaintext
Raw Normal View History

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,
}