xz-analysis-mirror/src/liblzma/simple/simple_encoder.h

24 lines
641 B
C
Raw Normal View History

2007-12-08 17:42:33 -05:00
///////////////////////////////////////////////////////////////////////////////
//
/// \file simple_encoder.c
/// \brief Properties encoder for simple filters
2007-12-08 17:42:33 -05:00
//
// Author: Lasse Collin
2007-12-08 17:42:33 -05:00
//
// This file has been put into the public domain.
// You can do whatever you want with this file.
2007-12-08 17:42:33 -05:00
//
///////////////////////////////////////////////////////////////////////////////
#ifndef LZMA_SIMPLE_ENCODER_H
#define LZMA_SIMPLE_ENCODER_H
2007-12-08 17:42:33 -05:00
#include "simple_coder.h"
2007-12-08 17:42:33 -05:00
extern lzma_ret lzma_simple_props_size(uint32_t *size, const void *options);
extern lzma_ret lzma_simple_props_encode(const void *options, uint8_t *out);
2007-12-08 17:42:33 -05:00
#endif