2007-12-08 17:42:33 -05:00
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
//
|
|
|
|
/// \file options.h
|
|
|
|
/// \brief Parser for filter-specific options
|
|
|
|
//
|
2009-04-13 04:27:40 -04:00
|
|
|
// Author: Lasse Collin
|
2007-12-08 17:42:33 -05:00
|
|
|
//
|
2009-04-13 04:27:40 -04: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
|
|
|
//
|
|
|
|
///////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/// \brief Parser for Delta options
|
|
|
|
///
|
|
|
|
/// \return Pointer to allocated options structure.
|
|
|
|
/// Doesn't return on error.
|
2008-11-19 13:46:52 -05:00
|
|
|
extern lzma_options_delta *options_delta(const char *str);
|
2007-12-08 17:42:33 -05:00
|
|
|
|
|
|
|
|
2009-05-23 08:12:23 -04:00
|
|
|
/// \brief Parser for BCJ options
|
|
|
|
///
|
|
|
|
/// \return Pointer to allocated options structure.
|
|
|
|
/// Doesn't return on error.
|
|
|
|
extern lzma_options_bcj *options_bcj(const char *str);
|
|
|
|
|
|
|
|
|
2007-12-08 17:42:33 -05:00
|
|
|
/// \brief Parser for LZMA options
|
|
|
|
///
|
|
|
|
/// \return Pointer to allocated options structure.
|
|
|
|
/// Doesn't return on error.
|
2008-11-19 13:46:52 -05:00
|
|
|
extern lzma_options_lzma *options_lzma(const char *str);
|