Back to home page

OSCL-LXR

 
 

    


0001 /*
0002  * XZ decoder module information
0003  *
0004  * Author: Lasse Collin <lasse.collin@tukaani.org>
0005  *
0006  * This file has been put into the public domain.
0007  * You can do whatever you want with this file.
0008  */
0009 
0010 #include <linux/module.h>
0011 #include <linux/xz.h>
0012 
0013 EXPORT_SYMBOL(xz_dec_init);
0014 EXPORT_SYMBOL(xz_dec_reset);
0015 EXPORT_SYMBOL(xz_dec_run);
0016 EXPORT_SYMBOL(xz_dec_end);
0017 
0018 #ifdef CONFIG_XZ_DEC_MICROLZMA
0019 EXPORT_SYMBOL(xz_dec_microlzma_alloc);
0020 EXPORT_SYMBOL(xz_dec_microlzma_reset);
0021 EXPORT_SYMBOL(xz_dec_microlzma_run);
0022 EXPORT_SYMBOL(xz_dec_microlzma_end);
0023 #endif
0024 
0025 MODULE_DESCRIPTION("XZ decompressor");
0026 MODULE_VERSION("1.1");
0027 MODULE_AUTHOR("Lasse Collin <lasse.collin@tukaani.org> and Igor Pavlov");
0028 
0029 /*
0030  * This code is in the public domain, but in Linux it's simplest to just
0031  * say it's GPL and consider the authors as the copyright holders.
0032  */
0033 MODULE_LICENSE("GPL");