]> wimlib.net Git - wimlib/blob - src/lzms-decompress.c
update; add lzms_decompress() stub
[wimlib] / src / lzms-decompress.c
1 /*
2  * lzms-decompress.c
3  *
4  * LZMS decompression routines.
5  */
6
7 /*
8  * Copyright (C) 2013 Eric Biggers
9  *
10  * This file is part of wimlib, a library for working with WIM files.
11  *
12  * wimlib is free software; you can redistribute it and/or modify it under the
13  * terms of the GNU General Public License as published by the Free
14  * Software Foundation; either version 3 of the License, or (at your option)
15  * any later version.
16  *
17  * wimlib is distributed in the hope that it will be useful, but WITHOUT ANY
18  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
19  * A PARTICULAR PURPOSE. See the GNU General Public License for more
20  * details.
21  *
22  * You should have received a copy of the GNU General Public License
23  * along with wimlib; if not, see http://www.gnu.org/licenses/.
24  */
25
26 #include "wimlib/lzms.h"
27 #include "wimlib/error.h"
28
29 int
30 lzms_decompress(const void *cdata, unsigned clen, void *udata, unsigned unlen,
31                 unsigned window_size)
32 {
33         ERROR("LZMS decompression stub: not implemented");
34         return -1;
35 }