lzmap.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  1. /*++
  2. Copyright (c) 2017 Minoca Corp.
  3. This file is licensed under the terms of the GNU General Public License
  4. version 3. Alternative licensing terms are available. Contact
  5. info@minocacorp.com for details. See the LICENSE file at the root of this
  6. project for complete licensing information.
  7. Module Name:
  8. lzmap.h
  9. Abstract:
  10. This header contains internal definitions for the Chalk LZMA module.
  11. Author:
  12. Evan Green 22-May-2017
  13. --*/
  14. //
  15. // ------------------------------------------------------------------- Includes
  16. //
  17. #include <minoca/lib/types.h>
  18. #include <minoca/lib/chalk.h>
  19. #include <minoca/lib/lzma.h>
  20. //
  21. // --------------------------------------------------------------------- Macros
  22. //
  23. //
  24. // ---------------------------------------------------------------- Definitions
  25. //
  26. //
  27. // ------------------------------------------------------ Data Type Definitions
  28. //
  29. //
  30. // -------------------------------------------------------------------- Globals
  31. //
  32. //
  33. // -------------------------------------------------------- Function Prototypes
  34. //
  35. VOID
  36. CkpLzmaModuleInit (
  37. PCK_VM Vm
  38. );
  39. /*++
  40. Routine Description:
  41. This routine populates the LZMA module namespace.
  42. Arguments:
  43. Vm - Supplies a pointer to the virtual machine.
  44. Return Value:
  45. None.
  46. --*/