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

24 lines
585 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-07-19 08:53:45 -05:00
return @eca(^u8, 4, buffer_id, memory_map_location, length)
2024-07-07 08:35:07 -05:00
}
send_message := fn(msg: ^u8, buffer_id: int): void {
msg_length := @inline(string.length, msg)
@eca(i32, 3, buffer_id, msg, msg_length)
2024-07-19 08:53:45 -05:00
return
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
return @eca(int, 3, 0, msg, msg_length)
}
search := fn(msg: ^u8): int {
msg_length := @inline(string.length, msg);
*msg = 3
return @eca(int, 3, 0, msg, msg_length)
2024-07-20 12:54:58 -05:00
}