Select one of the symbols to view example projects that use it.
 
Outline
#define PROTOBUF_C__NO_DEPRECATED
#include "wifi_ctrl.pb-c.h"
cmd_ctrl_reset__init(CmdCtrlReset *)
cmd_ctrl_reset__get_packed_size(const CmdCtrlReset *)
cmd_ctrl_reset__pack(const CmdCtrlReset *, uint8_t *)
cmd_ctrl_reset__pack_to_buffer(const CmdCtrlReset *, ProtobufCBuffer *)
cmd_ctrl_reset__unpack(ProtobufCAllocator *, size_t, const uint8_t *)
cmd_ctrl_reset__free_unpacked(CmdCtrlReset *, ProtobufCAllocator *)
resp_ctrl_reset__init(RespCtrlReset *)
resp_ctrl_reset__get_packed_size(const RespCtrlReset *)
resp_ctrl_reset__pack(const RespCtrlReset *, uint8_t *)
resp_ctrl_reset__pack_to_buffer(const RespCtrlReset *, ProtobufCBuffer *)
resp_ctrl_reset__unpack(ProtobufCAllocator *, size_t, const uint8_t *)
resp_ctrl_reset__free_unpacked(RespCtrlReset *, ProtobufCAllocator *)
cmd_ctrl_reprov__init(CmdCtrlReprov *)
cmd_ctrl_reprov__get_packed_size(const CmdCtrlReprov *)
cmd_ctrl_reprov__pack(const CmdCtrlReprov *, uint8_t *)
cmd_ctrl_reprov__pack_to_buffer(const CmdCtrlReprov *, ProtobufCBuffer *)
cmd_ctrl_reprov__unpack(ProtobufCAllocator *, size_t, const uint8_t *)
cmd_ctrl_reprov__free_unpacked(CmdCtrlReprov *, ProtobufCAllocator *)
resp_ctrl_reprov__init(RespCtrlReprov *)
resp_ctrl_reprov__get_packed_size(const RespCtrlReprov *)
resp_ctrl_reprov__pack(const RespCtrlReprov *, uint8_t *)
resp_ctrl_reprov__pack_to_buffer(const RespCtrlReprov *, ProtobufCBuffer *)
resp_ctrl_reprov__unpack(ProtobufCAllocator *, size_t, const uint8_t *)
resp_ctrl_reprov__free_unpacked(RespCtrlReprov *, ProtobufCAllocator *)
wi_fi_ctrl_payload__init(WiFiCtrlPayload *)
wi_fi_ctrl_payload__get_packed_size(const WiFiCtrlPayload *)
wi_fi_ctrl_payload__pack(const WiFiCtrlPayload *, uint8_t *)
wi_fi_ctrl_payload__pack_to_buffer(const WiFiCtrlPayload *, ProtobufCBuffer *)
wi_fi_ctrl_payload__unpack(ProtobufCAllocator *, size_t, const uint8_t *)
wi_fi_ctrl_payload__free_unpacked(WiFiCtrlPayload *, ProtobufCAllocator *)
#define cmd_ctrl_reset__field_descriptors
#define cmd_ctrl_reset__field_indices_by_name
#define cmd_ctrl_reset__number_ranges
cmd_ctrl_reset__descriptor
#define resp_ctrl_reset__field_descriptors
#define resp_ctrl_reset__field_indices_by_name
#define resp_ctrl_reset__number_ranges
resp_ctrl_reset__descriptor
#define cmd_ctrl_reprov__field_descriptors
#define cmd_ctrl_reprov__field_indices_by_name
#define cmd_ctrl_reprov__number_ranges
cmd_ctrl_reprov__descriptor
#define resp_ctrl_reprov__field_descriptors
#define resp_ctrl_reprov__field_indices_by_name
#define resp_ctrl_reprov__number_ranges
resp_ctrl_reprov__descriptor
wi_fi_ctrl_payload__field_descriptors
wi_fi_ctrl_payload__field_indices_by_name
wi_fi_ctrl_payload__number_ranges
wi_fi_ctrl_payload__descriptor
wi_fi_ctrl_msg_type__enum_values_by_number
wi_fi_ctrl_msg_type__value_ranges
wi_fi_ctrl_msg_type__enum_values_by_name
wi_fi_ctrl_msg_type__descriptor
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/wifi_provisioning/proto-c/wifi_ctrl.pb-c.c
 
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* Generated by the protocol buffer compiler. DO NOT EDIT! */ /* Generated from: wifi_ctrl.proto */ /* Do not generate deprecated warnings for self */ #ifndef PROTOBUF_C__NO_DEPRECATED #define PROTOBUF_C__NO_DEPRECATED #endif #include "wifi_ctrl.pb-c.h" void cmd_ctrl_reset__init (CmdCtrlReset *message) { static const CmdCtrlReset init_value = CMD_CTRL_RESET__INIT; *message = init_value; }{ ... } size_t cmd_ctrl_reset__get_packed_size (const CmdCtrlReset *message) { assert(message->base.descriptor == &cmd_ctrl_reset__descriptor); return protobuf_c_message_get_packed_size ((const ProtobufCMessage*)(message)); }{ ... } size_t cmd_ctrl_reset__pack (const CmdCtrlReset *message, uint8_t *out) { assert(message->base.descriptor == &cmd_ctrl_reset__descriptor); return protobuf_c_message_pack ((const ProtobufCMessage*)message, out); }{ ... } size_t cmd_ctrl_reset__pack_to_buffer (const CmdCtrlReset *message, ProtobufCBuffer *buffer) { assert(message->base.descriptor == &cmd_ctrl_reset__descriptor); return protobuf_c_message_pack_to_buffer ((const ProtobufCMessage*)message, buffer); }{ ... } CmdCtrlReset * cmd_ctrl_reset__unpack (ProtobufCAllocator *allocator, size_t len, const uint8_t *data) { return (CmdCtrlReset *) protobuf_c_message_unpack (&cmd_ctrl_reset__descriptor, allocator, len, data); }{ ... } void cmd_ctrl_reset__free_unpacked (CmdCtrlReset *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &cmd_ctrl_reset__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); }{ ... } void resp_ctrl_reset__init (RespCtrlReset *message) { static const RespCtrlReset init_value = RESP_CTRL_RESET__INIT; *message = init_value; }{ ... } size_t resp_ctrl_reset__get_packed_size (const RespCtrlReset *message) { assert(message->base.descriptor == &resp_ctrl_reset__descriptor); return protobuf_c_message_get_packed_size ((const ProtobufCMessage*)(message)); }{ ... } size_t resp_ctrl_reset__pack (const RespCtrlReset *message, uint8_t *out) { assert(message->base.descriptor == &resp_ctrl_reset__descriptor); return protobuf_c_message_pack ((const ProtobufCMessage*)message, out); }{ ... } size_t resp_ctrl_reset__pack_to_buffer (const RespCtrlReset *message, ProtobufCBuffer *buffer) { assert(message->base.descriptor == &resp_ctrl_reset__descriptor); return protobuf_c_message_pack_to_buffer ((const ProtobufCMessage*)message, buffer); }{ ... } RespCtrlReset * resp_ctrl_reset__unpack (ProtobufCAllocator *allocator, size_t len, const uint8_t *data) { return (RespCtrlReset *) protobuf_c_message_unpack (&resp_ctrl_reset__descriptor, allocator, len, data); }{ ... } void resp_ctrl_reset__free_unpacked (RespCtrlReset *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &resp_ctrl_reset__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); }{ ... } void cmd_ctrl_reprov__init (CmdCtrlReprov *message) { static const CmdCtrlReprov init_value = CMD_CTRL_REPROV__INIT; *message = init_value; }{ ... } size_t cmd_ctrl_reprov__get_packed_size (const CmdCtrlReprov *message) { assert(message->base.descriptor == &cmd_ctrl_reprov__descriptor); return protobuf_c_message_get_packed_size ((const ProtobufCMessage*)(message)); }{ ... } size_t cmd_ctrl_reprov__pack (const CmdCtrlReprov *message, uint8_t *out) { assert(message->base.descriptor == &cmd_ctrl_reprov__descriptor); return protobuf_c_message_pack ((const ProtobufCMessage*)message, out); }{ ... } size_t cmd_ctrl_reprov__pack_to_buffer (const CmdCtrlReprov *message, ProtobufCBuffer *buffer) { assert(message->base.descriptor == &cmd_ctrl_reprov__descriptor); return protobuf_c_message_pack_to_buffer ((const ProtobufCMessage*)message, buffer); }{ ... } CmdCtrlReprov * cmd_ctrl_reprov__unpack (ProtobufCAllocator *allocator, size_t len, const uint8_t *data) { return (CmdCtrlReprov *) protobuf_c_message_unpack (&cmd_ctrl_reprov__descriptor, allocator, len, data); }{ ... } void cmd_ctrl_reprov__free_unpacked (CmdCtrlReprov *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &cmd_ctrl_reprov__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); }{ ... } void resp_ctrl_reprov__init (RespCtrlReprov *message) { static const RespCtrlReprov init_value = RESP_CTRL_REPROV__INIT; *message = init_value; }{ ... } size_t resp_ctrl_reprov__get_packed_size (const RespCtrlReprov *message) { assert(message->base.descriptor == &resp_ctrl_reprov__descriptor); return protobuf_c_message_get_packed_size ((const ProtobufCMessage*)(message)); }{ ... } size_t resp_ctrl_reprov__pack (const RespCtrlReprov *message, uint8_t *out) { assert(message->base.descriptor == &resp_ctrl_reprov__descriptor); return protobuf_c_message_pack ((const ProtobufCMessage*)message, out); }{ ... } size_t resp_ctrl_reprov__pack_to_buffer (const RespCtrlReprov *message, ProtobufCBuffer *buffer) { assert(message->base.descriptor == &resp_ctrl_reprov__descriptor); return protobuf_c_message_pack_to_buffer ((const ProtobufCMessage*)message, buffer); }{ ... } RespCtrlReprov * resp_ctrl_reprov__unpack (ProtobufCAllocator *allocator, size_t len, const uint8_t *data) { return (RespCtrlReprov *) protobuf_c_message_unpack (&resp_ctrl_reprov__descriptor, allocator, len, data); }{ ... } void resp_ctrl_reprov__free_unpacked (RespCtrlReprov *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &resp_ctrl_reprov__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); }{ ... } void wi_fi_ctrl_payload__init (WiFiCtrlPayload *message) { static const WiFiCtrlPayload init_value = WI_FI_CTRL_PAYLOAD__INIT; *message = init_value; }{ ... } size_t wi_fi_ctrl_payload__get_packed_size (const WiFiCtrlPayload *message) { assert(message->base.descriptor == &wi_fi_ctrl_payload__descriptor); return protobuf_c_message_get_packed_size ((const ProtobufCMessage*)(message)); }{ ... } size_t wi_fi_ctrl_payload__pack (const WiFiCtrlPayload *message, uint8_t *out) { assert(message->base.descriptor == &wi_fi_ctrl_payload__descriptor); return protobuf_c_message_pack ((const ProtobufCMessage*)message, out); }{ ... } size_t wi_fi_ctrl_payload__pack_to_buffer (const WiFiCtrlPayload *message, ProtobufCBuffer *buffer) { assert(message->base.descriptor == &wi_fi_ctrl_payload__descriptor); return protobuf_c_message_pack_to_buffer ((const ProtobufCMessage*)message, buffer); }{ ... } WiFiCtrlPayload * wi_fi_ctrl_payload__unpack (ProtobufCAllocator *allocator, size_t len, const uint8_t *data) { return (WiFiCtrlPayload *) protobuf_c_message_unpack (&wi_fi_ctrl_payload__descriptor, allocator, len, data); }{ ... } void wi_fi_ctrl_payload__free_unpacked (WiFiCtrlPayload *message, ProtobufCAllocator *allocator) { if(!message) return; assert(message->base.descriptor == &wi_fi_ctrl_payload__descriptor); protobuf_c_message_free_unpacked ((ProtobufCMessage*)message, allocator); }{ ... } #define cmd_ctrl_reset__field_descriptors NULL #define cmd_ctrl_reset__field_indices_by_name NULL #define cmd_ctrl_reset__number_ranges NULL const ProtobufCMessageDescriptor cmd_ctrl_reset__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "CmdCtrlReset", "CmdCtrlReset", "CmdCtrlReset", "", sizeof(CmdCtrlReset), 0, cmd_ctrl_reset__field_descriptors, cmd_ctrl_reset__field_indices_by_name, 0, cmd_ctrl_reset__number_ranges, (ProtobufCMessageInit) cmd_ctrl_reset__init, NULL,NULL,NULL /* reserved[123] */ }{...}; #define resp_ctrl_reset__field_descriptors NULL #define resp_ctrl_reset__field_indices_by_name NULL #define resp_ctrl_reset__number_ranges NULL const ProtobufCMessageDescriptor resp_ctrl_reset__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "RespCtrlReset", "RespCtrlReset", "RespCtrlReset", "", sizeof(RespCtrlReset), 0, resp_ctrl_reset__field_descriptors, resp_ctrl_reset__field_indices_by_name, 0, resp_ctrl_reset__number_ranges, (ProtobufCMessageInit) resp_ctrl_reset__init, NULL,NULL,NULL /* reserved[123] */ }{...}; #define cmd_ctrl_reprov__field_descriptors NULL #define cmd_ctrl_reprov__field_indices_by_name NULL #define cmd_ctrl_reprov__number_ranges NULL const ProtobufCMessageDescriptor cmd_ctrl_reprov__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "CmdCtrlReprov", "CmdCtrlReprov", "CmdCtrlReprov", "", sizeof(CmdCtrlReprov), 0, cmd_ctrl_reprov__field_descriptors, cmd_ctrl_reprov__field_indices_by_name, 0, cmd_ctrl_reprov__number_ranges, (ProtobufCMessageInit) cmd_ctrl_reprov__init, NULL,NULL,NULL /* reserved[123] */ }{...}; #define resp_ctrl_reprov__field_descriptors NULL #define resp_ctrl_reprov__field_indices_by_name NULL #define resp_ctrl_reprov__number_ranges NULL const ProtobufCMessageDescriptor resp_ctrl_reprov__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "RespCtrlReprov", "RespCtrlReprov", "RespCtrlReprov", "", sizeof(RespCtrlReprov), 0, resp_ctrl_reprov__field_descriptors, resp_ctrl_reprov__field_indices_by_name, 0, resp_ctrl_reprov__number_ranges, (ProtobufCMessageInit) resp_ctrl_reprov__init, NULL,NULL,NULL /* reserved[123] */ }{...}; static const ProtobufCFieldDescriptor wi_fi_ctrl_payload__field_descriptors[6] = { { "msg", 1, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_ENUM, 0, /* quantifier_offset */ offsetof(WiFiCtrlPayload, msg), &wi_fi_ctrl_msg_type__descriptor, NULL, 0, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, { "status", 2, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_ENUM, 0, /* quantifier_offset */ offsetof(WiFiCtrlPayload, status), &status__descriptor, NULL, 0, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, { "cmd_ctrl_reset", 11, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_MESSAGE, offsetof(WiFiCtrlPayload, payload_case), offsetof(WiFiCtrlPayload, cmd_ctrl_reset), &cmd_ctrl_reset__descriptor, NULL, 0 | PROTOBUF_C_FIELD_FLAG_ONEOF, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, { "resp_ctrl_reset", 12, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_MESSAGE, offsetof(WiFiCtrlPayload, payload_case), offsetof(WiFiCtrlPayload, resp_ctrl_reset), &resp_ctrl_reset__descriptor, NULL, 0 | PROTOBUF_C_FIELD_FLAG_ONEOF, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, { "cmd_ctrl_reprov", 13, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_MESSAGE, offsetof(WiFiCtrlPayload, payload_case), offsetof(WiFiCtrlPayload, cmd_ctrl_reprov), &cmd_ctrl_reprov__descriptor, NULL, 0 | PROTOBUF_C_FIELD_FLAG_ONEOF, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, { "resp_ctrl_reprov", 14, PROTOBUF_C_LABEL_NONE, PROTOBUF_C_TYPE_MESSAGE, offsetof(WiFiCtrlPayload, payload_case), offsetof(WiFiCtrlPayload, resp_ctrl_reprov), &resp_ctrl_reprov__descriptor, NULL, 0 | PROTOBUF_C_FIELD_FLAG_ONEOF, /* flags */ 0,NULL,NULL /* reserved1,reserved2, etc */ }{...}, }{...}; static const unsigned wi_fi_ctrl_payload__field_indices_by_name[] = { 4, /* field[4] = cmd_ctrl_reprov */ 2, /* field[2] = cmd_ctrl_reset */ 0, /* field[0] = msg */ 5, /* field[5] = resp_ctrl_reprov */ 3, /* field[3] = resp_ctrl_reset */ 1, /* field[1] = status */ }{...}; static const ProtobufCIntRange wi_fi_ctrl_payload__number_ranges[2 + 1] = { { 1, 0 }, { 11, 2 }, { 0, 6 } }{...}; const ProtobufCMessageDescriptor wi_fi_ctrl_payload__descriptor = { PROTOBUF_C__MESSAGE_DESCRIPTOR_MAGIC, "WiFiCtrlPayload", "WiFiCtrlPayload", "WiFiCtrlPayload", "", sizeof(WiFiCtrlPayload), 6, wi_fi_ctrl_payload__field_descriptors, wi_fi_ctrl_payload__field_indices_by_name, 2, wi_fi_ctrl_payload__number_ranges, (ProtobufCMessageInit) wi_fi_ctrl_payload__init, NULL,NULL,NULL /* reserved[123] */ }{...}; static const ProtobufCEnumValue wi_fi_ctrl_msg_type__enum_values_by_number[5] = { { "TypeCtrlReserved", "WI_FI_CTRL_MSG_TYPE__TypeCtrlReserved", 0 }, { "TypeCmdCtrlReset", "WI_FI_CTRL_MSG_TYPE__TypeCmdCtrlReset", 1 }, { "TypeRespCtrlReset", "WI_FI_CTRL_MSG_TYPE__TypeRespCtrlReset", 2 }, { "TypeCmdCtrlReprov", "WI_FI_CTRL_MSG_TYPE__TypeCmdCtrlReprov", 3 }, { "TypeRespCtrlReprov", "WI_FI_CTRL_MSG_TYPE__TypeRespCtrlReprov", 4 }, }{...}; static const ProtobufCIntRange wi_fi_ctrl_msg_type__value_ranges[] = { {0, 0},{0, 5} }{...}; static const ProtobufCEnumValueIndex wi_fi_ctrl_msg_type__enum_values_by_name[5] = { { "TypeCmdCtrlReprov", 3 }, { "TypeCmdCtrlReset", 1 }, { "TypeCtrlReserved", 0 }, { "TypeRespCtrlReprov", 4 }, { "TypeRespCtrlReset", 2 }, }{...}; const ProtobufCEnumDescriptor wi_fi_ctrl_msg_type__descriptor = { PROTOBUF_C__ENUM_DESCRIPTOR_MAGIC, "WiFiCtrlMsgType", "WiFiCtrlMsgType", "WiFiCtrlMsgType", "", 5, wi_fi_ctrl_msg_type__enum_values_by_number, 5, wi_fi_ctrl_msg_type__enum_values_by_name, 1, wi_fi_ctrl_msg_type__value_ranges, NULL,NULL,NULL,NULL /* reserved[1234] */ }{...};
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.