12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- /*
- * CDE - Common Desktop Environment
- *
- * Copyright (c) 1993-2012, The Open Group. All rights reserved.
- *
- * These libraries and programs are free software; you can
- * redistribute them and/or modify them under the terms of the GNU
- * Lesser General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option)
- * any later version.
- *
- * These libraries and programs are distributed in the hope that
- * they will be useful, but WITHOUT ANY WARRANTY; without even the
- * implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
- * PURPOSE. See the GNU Lesser General Public License for more
- * details.
- *
- * You should have received a copy of the GNU Lesser General Public
- * License along with these libraries and programs; if not, write
- * to the Free Software Foundation, Inc., 51 Franklin Street, Fifth
- * Floor, Boston, MA 02110-1301 USA
- */
- /* $XConsortium: ilcompress.h /main/3 1995/10/23 15:42:59 rswiston $ */
- /**---------------------------------------------------------------------
- ***
- *** (c)Copyright 1991 Hewlett-Packard Co.
- ***
- *** RESTRICTED RIGHTS LEGEND
- *** Use, duplication, or disclosure by the U.S. Government is subject to
- *** restrictions as set forth in sub-paragraph (c)(1)(ii) of the Rights in
- *** Technical Data and Computer Software clause in DFARS 252.227-7013.
- *** Hewlett-Packard Company
- *** 3000 Hanover Street
- *** Palo Alto, CA 94304 U.S.A.
- *** Rights for non-DOD U.S. Government Departments and Agencies are as set
- *** forth in FAR 52.227-19(c)(1,2).
- ***
- ***-------------------------------------------------------------------*/
- #ifndef ILCOMPRESS_H
- #define ILCOMPRESS_H
- #ifndef ILPIPELEM_H
- #include "ilpipelem.h"
- #endif
- #ifndef ILINT_H
- #include "ilint.h"
- #endif
- IL_EXTERN ilBool _ilCompressG3 (
- ilPipe pipe,
- ilPipeInfo *pinfo,
- ilImageDes *pimdes,
- ilImageFormat *pimformat,
- ilSrcElementData *pSrcData,
- ilPtr pCompData
- );
- IL_EXTERN ilBool _ilCompressG4 (
- ilPipe pipe,
- ilPipeInfo *pinfo,
- ilImageDes *pimdes,
- ilImageFormat *pimformat,
- ilSrcElementData *pSrcData,
- ilPtr pCompData
- );
- IL_EXTERN ilBool _ilCompressLZW (
- ilPipe pipe,
- ilPipeInfo *pinfo,
- ilImageDes *pimdes,
- ilImageFormat *pimformat,
- ilSrcElementData *pSrcData
- );
- IL_EXTERN ilBool _ilCompressPackbits (
- ilPipe pipe,
- ilPipeInfo *pinfo,
- ilImageDes *pimdes,
- ilImageFormat *pimformat,
- ilSrcElementData *pSrcData
- );
- IL_EXTERN ilBool _ilCompressJPEG (
- ilPipe pipe,
- ilPipeInfo *pinfo,
- ilImageDes *pimdes,
- ilImageFormat *pimformat,
- ilSrcElementData *pSrcData,
- ilPtr pCompData
- );
- #endif
|