D | pb.h | 429 #define PB_REQUIRED_STATIC(tag, st, m, fd, ltype, ptr) \ argument 431 tag, PB_ATYPE_STATIC | PB_HTYPE_REQUIRED | ltype, fd, 0, \ 436 #define PB_OPTIONAL_STATIC(tag, st, m, fd, ltype, ptr) \ argument 438 tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, fd, \ 442 #define PB_SINGULAR_STATIC(tag, st, m, fd, ltype, ptr) \ argument 444 tag, PB_ATYPE_STATIC | PB_HTYPE_OPTIONAL | ltype, fd, 0, \ 450 #define PB_REPEATED_STATIC(tag, st, m, fd, ltype, ptr) \ argument 452 tag, PB_ATYPE_STATIC | PB_HTYPE_REPEATED | ltype, fd, \ 458 #define PB_REQUIRED_POINTER(tag, st, m, fd, ltype, ptr) \ argument 460 tag, PB_ATYPE_POINTER | PB_HTYPE_REQUIRED | ltype, fd, 0, \ [all …]
|