ilcompress.h 3.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. /*
  2. * CDE - Common Desktop Environment
  3. *
  4. * Copyright (c) 1993-2012, The Open Group. All rights reserved.
  5. *
  6. * These libraries and programs are free software; you can
  7. * redistribute them and/or modify them under the terms of the GNU
  8. * Lesser General Public License as published by the Free Software
  9. * Foundation; either version 2 of the License, or (at your option)
  10. * any later version.
  11. *
  12. * These libraries and programs are distributed in the hope that
  13. * they will be useful, but WITHOUT ANY WARRANTY; without even the
  14. * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
  15. * PURPOSE. See the GNU Lesser General Public License for more
  16. * details.
  17. *
  18. * You should have received a copy of the GNU Lesser General Public
  19. * License along with these librararies and programs; if not, write
  20. * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
  21. * Floor, Boston, MA 02110-1301 USA
  22. */
  23. /* $XConsortium: ilcompress.h /main/3 1995/10/23 15:42:59 rswiston $ */
  24. /**---------------------------------------------------------------------
  25. ***
  26. *** (c)Copyright 1991 Hewlett-Packard Co.
  27. ***
  28. *** RESTRICTED RIGHTS LEGEND
  29. *** Use, duplication, or disclosure by the U.S. Government is subject to
  30. *** restrictions as set forth in sub-paragraph (c)(1)(ii) of the Rights in
  31. *** Technical Data and Computer Software clause in DFARS 252.227-7013.
  32. *** Hewlett-Packard Company
  33. *** 3000 Hanover Street
  34. *** Palo Alto, CA 94304 U.S.A.
  35. *** Rights for non-DOD U.S. Government Departments and Agencies are as set
  36. *** forth in FAR 52.227-19(c)(1,2).
  37. ***
  38. ***-------------------------------------------------------------------*/
  39. #ifndef ILCOMPRESS_H
  40. #define ILCOMPRESS_H
  41. #ifndef ILPIPELEM_H
  42. #include "ilpipelem.h"
  43. #endif
  44. #ifndef ILINT_H
  45. #include "ilint.h"
  46. #endif
  47. IL_EXTERN ilBool _ilCompressG3 (
  48. ilPipe pipe,
  49. ilPipeInfo *pinfo,
  50. ilImageDes *pimdes,
  51. ilImageFormat *pimformat,
  52. ilSrcElementData *pSrcData,
  53. ilPtr pCompData
  54. );
  55. IL_EXTERN ilBool _ilCompressG4 (
  56. ilPipe pipe,
  57. ilPipeInfo *pinfo,
  58. ilImageDes *pimdes,
  59. ilImageFormat *pimformat,
  60. ilSrcElementData *pSrcData,
  61. ilPtr pCompData
  62. );
  63. IL_EXTERN ilBool _ilCompressLZW (
  64. ilPipe pipe,
  65. ilPipeInfo *pinfo,
  66. ilImageDes *pimdes,
  67. ilImageFormat *pimformat,
  68. ilSrcElementData *pSrcData
  69. );
  70. IL_EXTERN ilBool _ilCompressPackbits (
  71. ilPipe pipe,
  72. ilPipeInfo *pinfo,
  73. ilImageDes *pimdes,
  74. ilImageFormat *pimformat,
  75. ilSrcElementData *pSrcData
  76. );
  77. IL_EXTERN ilBool _ilCompressJPEG (
  78. ilPipe pipe,
  79. ilPipeInfo *pinfo,
  80. ilImageDes *pimdes,
  81. ilImageFormat *pimformat,
  82. ilSrcElementData *pSrcData,
  83. ilPtr pCompData
  84. );
  85. #endif