|
client-c
0.9.0
|
Include dependency graph for encoding.h:Go to the source code of this file.
Classes | |
| struct | avro_encoding_t |
Macros | |
| #define | AVRO_WRITE(writer, buf, len) { int rval = avro_write( writer, buf, len ); if(rval) return rval; } |
| #define | AVRO_READ(reader, buf, len) { int rval = avro_read( reader, buf, len ); if(rval) return rval; } |
Typedefs | |
| typedef struct avro_encoding_t | avro_encoding_t |
Variables | |
| const avro_encoding_t | avro_binary_encoding |
| #define AVRO_READ | ( | reader, | |
| buf, | |||
| len | |||
| ) | { int rval = avro_read( reader, buf, len ); if(rval) return rval; } |
Definition at line 77 of file encoding.h.
| #define AVRO_WRITE | ( | writer, | |
| buf, | |||
| len | |||
| ) | { int rval = avro_write( writer, buf, len ); if(rval) return rval; } |
Definition at line 75 of file encoding.h.
| typedef struct avro_encoding_t avro_encoding_t |
Definition at line 73 of file encoding.h.
| const avro_encoding_t avro_binary_encoding |