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,25 +1,25 @@
# requests
msg destroy = 0 {
request destroy = 0 {
}
msg get_lock_surface = 1 {
request get_lock_surface = 1 {
id: id(ext_session_lock_surface_v1),
surface: id(wl_surface),
output: id(wl_output),
}
msg unlock_and_destroy = 2 {
request unlock_and_destroy = 2 {
}
# events
msg locked = 0 {
event locked = 0 {
}
msg finished = 1 {
event finished = 1 {
}