xz_dec_syms.c 855 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * XZ decoder module information
  3. *
  4. * Author: Lasse Collin <[email protected]>
  5. *
  6. * This file has been put into the public domain.
  7. * You can do whatever you want with this file.
  8. */
  9. #include <linux/module.h>
  10. #include <linux/xz.h>
  11. EXPORT_SYMBOL(xz_dec_init);
  12. EXPORT_SYMBOL(xz_dec_reset);
  13. EXPORT_SYMBOL(xz_dec_run);
  14. EXPORT_SYMBOL(xz_dec_end);
  15. #ifdef CONFIG_XZ_DEC_MICROLZMA
  16. EXPORT_SYMBOL(xz_dec_microlzma_alloc);
  17. EXPORT_SYMBOL(xz_dec_microlzma_reset);
  18. EXPORT_SYMBOL(xz_dec_microlzma_run);
  19. EXPORT_SYMBOL(xz_dec_microlzma_end);
  20. #endif
  21. MODULE_DESCRIPTION("XZ decompressor");
  22. MODULE_VERSION("1.1");
  23. MODULE_AUTHOR("Lasse Collin <[email protected]> and Igor Pavlov");
  24. /*
  25. * This code is in the public domain, but in Linux it's simplest to just
  26. * say it's GPL and consider the authors as the copyright holders.
  27. */
  28. MODULE_LICENSE("GPL");