#ifndef DK4DEC_H_INCLUDED #define DK4DEC_H_INCLUDED 1 /** @file dk4dec.h Result values for adding bytes to a decoder. */ /** Results when adding bytes to a decoder. */ enum { /** Byte(s) added successfully, stored in the decoders internal state. No further action necessary. */ DK4_DECODER_ACCEPT = 0, /** Byte(s) added successfully, you can retrieve output. */ DK4_DECODER_FINISHED , /** An error occured while adding byte(s). */ DK4_DECODER_ERROR }; #endif