ableos/sysdata/libraries/stn/src/buffer.hb

22 lines
530 B
Plaintext
Raw Normal View History

2024-07-19 08:53:45 -05:00
string := @use("rel:string.hb")
2024-07-07 08:35:07 -05:00
receive_message := fn(buffer_id: int, memory_map_location: ^u8, length: int): ^u8 {
2024-09-17 19:26:37 -05:00
return @eca(4, buffer_id, memory_map_location, length)
2024-07-07 08:35:07 -05:00
}
2024-09-16 15:56:52 -05:00
send_message := fn(msg: ^u8, buffer_id: int, length: int): void {
2024-09-17 19:26:37 -05:00
return @eca(3, buffer_id, msg, length)
2024-07-07 08:35:07 -05:00
}
create := fn(msg: ^u8): int {
msg_length := @inline(string.length, msg);
2024-07-19 08:53:45 -05:00
*msg = 0
2024-09-17 19:26:37 -05:00
return @eca(3, 0, msg, msg_length)
}
search := fn(msg: ^u8): int {
msg_length := @inline(string.length, msg);
*msg = 3
2024-09-17 19:26:37 -05:00
return @eca(3, 0, msg, msg_length)
2024-07-20 12:54:58 -05:00
}