Zsolt Haraszti | dafefe1 | 2016-11-14 21:29:58 -0800 | [diff] [blame] | 1 | syntax = "proto3"; |
2 | |||||
3 | package vendor.x2; | ||||
4 | |||||
5 | // Vendor specific adapter descriptor data | ||||
6 | message AdapterDescription { | ||||
7 | string foo = 1; | ||||
8 | uint32 arg1 = 2; | ||||
9 | uint32 arg2 = 3; | ||||
10 | uint32 arg3 = 4; | ||||
11 | uint32 arg4 = 5; | ||||
12 | uint32 arg5 = 6; | ||||
13 | uint32 arg6 = 7; | ||||
14 | } | ||||
15 | |||||
16 | // Vendor specific adapter configuration data | ||||
17 | message AdapterConfig { | ||||
18 | uint64 conf1 = 1; | ||||
19 | uint64 conf2 = 2; | ||||
20 | uint64 conf3 = 3; | ||||
21 | uint64 conf4 = 4; | ||||
22 | uint64 conf5 = 5; | ||||
23 | repeated string things = 6; | ||||
24 | } |