Start of 5.X work

This commit is contained in:
Sebastien L
2025-03-18 17:38:34 -04:00
parent c0ddf0a997
commit 73bd096f37
442 changed files with 227862 additions and 21075 deletions

View File

@@ -19,6 +19,7 @@ message CustomOptions {
bool v_bool = 50057;
string v_enum = 50058 [(nanopb).type = FT_POINTER];
bytes v_bytes = 50059 [(nanopb).type = FT_POINTER];
bytes v_msg = 50060 [(nanopb).type = FT_POINTER];
}
string global_name = 50005 [(nanopb).type = FT_POINTER];
@@ -26,18 +27,18 @@ message CustomOptions {
extend google.protobuf.FileOptions {
optional CustomOptions cust_file = 2010;
CustomOptions cust_file = 2010;
}
extend google.protobuf.MessageOptions {
optional CustomOptions cust_msg = 2010;
CustomOptions cust_msg = 2010;
}
extend google.protobuf.EnumOptions {
optional CustomOptions cust_enum = 2010;
CustomOptions cust_enum = 2010;
}
extend google.protobuf.FieldOptions {
optional CustomOptions cust_field = 2010;
CustomOptions cust_field = 2010;
}