Kaa client C SDK
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Pages
Data Structures | Macros | Typedefs | Variables
encoding.h File Reference
#include "avro/platform.h"
#include "avro/io.h"

Go to the source code of this file.

Data Structures

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; }
#define AVRO_WRITE (   writer,
  buf,
  len 
)    { int rval = avro_write( writer, buf, len ); if(rval) return rval; }

Typedef Documentation

Variable Documentation

const avro_encoding_t avro_binary_encoding