-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathTest.msg
More file actions
50 lines (40 loc) · 1.11 KB
/
Test.msg
File metadata and controls
50 lines (40 loc) · 1.11 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
# msg level doc
# field level doc
bool bool_value
byte byte_value # field level doc, style 2
# combined styles
char char_value # combined styles, part 2
float32 float32_value
float64 float64_value
int8 int8_value
uint8 uint8_value
int16 int16_value
uint16 uint16_value
int32 int32_value
uint32 uint32_value
int64 int64_value
uint64 uint64_value
@optional
float32 multiline_optional
@optional float32 inline_optional
@optional float32 inline_default_optional 32.0
@optional float32 INLINE_CONSTANT=32.0
@optional string optional_default_string @optional
@optional string OPTIONAL_STRING_CONST=@optional
@key
float32 multiline_key
@key float32 inline_key
@key float32 inline_default_key 32.0
@key float32 INLINE_CONSTANT_KEY=32.0
@key string key_default_string @key
@key string KEY_STRING_CONST=@key
@key
@optional
float32 multiline_optional_key
@key @optional float32 inline_optional_key
@optional @key float32 inline_default_optional_key 32.0
@key @optional float32 INLINE_CONSTANT_OPTIONAL_KEY=32.0
@optional
@key string optional_key_default_string @key @optional
@key
@optional string KEY_OPTIONAL_STRING_CONST=@optional @key