Release 0.1.0

This commit is contained in:
xeon
2026-02-02 20:53:22 +03:00
commit 25660300dd
152 changed files with 882089 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
syntax = "proto3";
package proto;
option go_package = "/csproto";
enum FOCUS_MODE_LEAVE_REASON {
COMPLETE = 0;
CLT_QUIT = 1;
INTERRUPT = 2;
}
message CS_FOCUS_MODE_ENTER_REQ {
string focus_mode_id = 1;
}
message CS_FOCUS_MODE_LEAVE_REQ {
string focus_mode_id = 1;
}
message SC_FOCUS_MODE_ENTER_NTF {
string focus_mode_id = 1;
}
message SC_FOCUS_MODE_LEAVE_NTF {
string focus_mode_id = 1;
FOCUS_MODE_LEAVE_REASON leave_reason = 2;
}
message SC_FOCUS_MODE_LEAVE_END_NTF {
string focus_mode_id = 1;
}