client-c  0.7.0
encoding.h File Reference
#include "avro/platform.h"
#include "avro/io.h"
+ 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
 

Macro Definition Documentation

#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 Documentation

Definition at line 73 of file encoding.h.

Variable Documentation

const avro_encoding_t avro_binary_encoding