mirror of
https://github.com/sle118/squeezelite-esp32.git
synced 2025-12-08 20:47:08 +03:00
51 lines
1.3 KiB
C
51 lines
1.3 KiB
C
/* Automatically generated nanopb header */
|
|
/* Generated by nanopb-0.4.6-dev */
|
|
|
|
#ifndef PB_PROTOBUF_MERCURY_PB_H_INCLUDED
|
|
#define PB_PROTOBUF_MERCURY_PB_H_INCLUDED
|
|
#include <pb.h>
|
|
|
|
#if PB_PROTO_HEADER_VERSION != 40
|
|
#error Regenerate this file with the current version of nanopb generator.
|
|
#endif
|
|
|
|
/* Struct definitions */
|
|
typedef struct _Header {
|
|
char *uri;
|
|
char *method;
|
|
} Header;
|
|
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/* Initializer values for message structs */
|
|
#define Header_init_default {NULL, NULL}
|
|
#define Header_init_zero {NULL, NULL}
|
|
|
|
/* Field tags (for use in manual encoding/decoding) */
|
|
#define Header_uri_tag 1
|
|
#define Header_method_tag 3
|
|
|
|
/* Struct field encoding specification for nanopb */
|
|
#define Header_FIELDLIST(X, a) \
|
|
X(a, POINTER, OPTIONAL, STRING, uri, 1) \
|
|
X(a, POINTER, OPTIONAL, STRING, method, 3)
|
|
#define Header_CALLBACK NULL
|
|
#define Header_DEFAULT NULL
|
|
|
|
extern const pb_msgdesc_t Header_msg;
|
|
|
|
/* Defines for backwards compatibility with code written before nanopb-0.4.0 */
|
|
#define Header_fields &Header_msg
|
|
|
|
/* Maximum encoded size of messages (where known) */
|
|
/* Header_size depends on runtime parameters */
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif
|