summaryrefslogtreecommitdiff
path: root/descriptor.h
blob: 9ac031925f07debbb15dd965ac4a4fb52f45aa2e (plain)
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

enum pbstream_FieldDescriptorProtoType {
  PBSTREAM_TYPE_INT32    = 5,
  PBSTREAM_TYPE_STRING   = 9,
  PBSTREAM_TYPE_MESSAGE  = 11,
  PBSTREAM_TYPE_ENUM     = 14,
};

struct pbstream_FileDescriptorSet {
  int file_count;
  struct pbstream_FileDescriptorProto *file;
};

struct pbstream_FileDescriptorProto {
  int message_type_count;
  struct pbstream_FileDescriptorProto *message_type;
};

struct pbstream_DescriptorProto {
  char *name;
  int field_count;
  struct pbstream_FieldDescriptorProto *field;
  int nested_type_count;
  struct pbstream_DescriptorProto *nested_type;
  int enum_type_count;
  struct pbstream_EnumDescriptorProto *enum_type;
};

struct pbstream_FieldDescriptorProto {
  char *name;
  int32_t number;
  enum pbstream_FieldDescriptorProtoType type;
  char *type_name;
};

struct pbstream_EnumValueDescriptorProto {
  char *name;
  int32_t number;
};

struct pbstream_EnumDescriptorProto {
  char *name;
  int value_count;
  struct pbstream_EnumValueDescriptorProto *value;
};

generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback