2007-12-08 23:42:33 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
2008-08-28 21:53:15 +02:00
|
|
|
/// \file simple_encoder.c
|
|
|
|
/// \brief Properties encoder for simple filters
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
2009-04-13 10:27:40 +02:00
|
|
|
// This file has been put into the public domain.
|
|
|
|
// You can do whatever you want with this file.
|
2007-12-08 23:42:33 +01:00
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2008-08-28 21:53:15 +02:00
|
|
|
#ifndef LZMA_SIMPLE_ENCODER_H
|
|
|
|
#define LZMA_SIMPLE_ENCODER_H
|
2007-12-08 23:42:33 +01:00
|
|
|
|
2008-08-28 21:53:15 +02:00
|
|
|
#include "simple_coder.h"
|
2007-12-08 23:42:33 +01:00
|
|
|
|
|
|
|
|
2008-08-28 21:53:15 +02: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 23:42:33 +01:00
|
|
|
|
|
|
|
#endif
|