ildecomp.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  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 libraries 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: ildecomp.h /main/3 1995/10/23 15:44:41 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 ILDECOMP_H
  40. #define ILDECOMP_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 _ilDecompG3 (
  48. ilPipe pipe,
  49. ilPipeInfo *pinfo,
  50. ilImageDes *pimdes
  51. );
  52. IL_EXTERN ilBool _ilDecompG4 (
  53. ilPipe pipe,
  54. ilPipeInfo *pinfo,
  55. ilImageDes *pimdes
  56. );
  57. IL_EXTERN ilBool _ilDecompLZW (
  58. ilPipe pipe,
  59. ilPipeInfo *pinfo,
  60. ilImageDes *pimdes,
  61. ilImageFormat *pimformat
  62. );
  63. IL_EXTERN ilBool _ilDecompPackbits (
  64. ilPipe pipe,
  65. ilPipeInfo *pinfo,
  66. ilImageDes *pimdes,
  67. ilImageFormat *pimformat
  68. );
  69. IL_EXTERN ilBool _ilDecompJPEG (
  70. ilPipe pipe,
  71. ilPipeInfo *pInfo,
  72. ilImageDes *pDes
  73. );
  74. #endif