1
0
Fork 0
forked from wry/wry

wire: split messages into requests and events

This commit is contained in:
Julian Orth 2024-04-08 11:56:26 +02:00
parent 2b35f30ed4
commit c473d63df3
98 changed files with 495 additions and 486 deletions

View file

@ -1,22 +1,22 @@
# requests
msg destroy = 0 { }
request destroy = 0 { }
msg create_positioner = 1 {
request create_positioner = 1 {
id: id(xdg_positioner),
}
msg get_xdg_surface = 2 {
request get_xdg_surface = 2 {
id: id(xdg_surface),
surface: id(wl_surface),
}
msg pong = 3 {
request pong = 3 {
serial: u32,
}
# events
msg ping = 0 {
event ping = 0 {
serial: u32,
}