123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205 |
- /*
- * 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: ilpipelem.h /main/5 1996/06/19 12:21:07 ageorge $ */
- /**---------------------------------------------------------------------
- ***
- *** file: ilpipelem.h
- ***
- *** description: Definitions for user-defined and internal pipe elements
- ***
- ***
- *** (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 ILPIPELEM_H
- #define ILPIPELEM_H
- #ifndef ILINT_H
- /* for size_t declaration */
- #include <stddef.h>
- #endif
- #ifndef IL_H
- #include "il.h"
- #endif
- #ifndef NeedFunctionPrototypes
- #if defined(FUNCPROTO) || defined(__STDC__) || defined(__cplusplus) || defined(c_plusplus)
- #define NeedFunctionPrototypes 1
- #else
- #define NeedFunctionPrototypes 0
- #endif /* __STDC__ */
- #endif /* NeedFunctionPrototypes */
- #ifndef NeedWidePrototypes
- #if defined(NARROWPROTO)
- #define NeedWidePrototypes 0
- #else
- #define NeedWidePrototypes 1 /* default to make interropt. easier */
- #endif
- #endif
- #ifdef __cplusplus /* do not leave open across includes */
- extern "C" { /* for C++ V2.0 */
- #endif
- /* ilAddPipeElement (elementType) */
- #define IL_PRODUCER 0
- #define IL_CONSUMER 1
- #define IL_FILTER 2
- #define IL_HOOK 3
- /* ilAddPipeElement (flags) */
- #define IL_ADD_PIPE_NO_DST (1<<0)
- #define IL_ADD_PIPE_HOLD_SRC (1<<1)
- #define IL_ADD_PIPE_HOLD_DST (1<<2)
- /* ilAddPipeElement (null function pointer) */
- #define IL_NPF ((ilError (*)())0)
- typedef struct {
- ilObject producerObject;
- ilBool tempImage;
- long width, height;
- ilBool constantStrip;
- long stripHeight;
- long recommendedStripHeight;
- unsigned short *pPalette;
- ilPtr pCompData;
- long filler [8];
- } ilPipeInfo;
- typedef struct {
- ilPtr pPrivate;
- ilImageInfo *pSrcImage;
- ilImageInfo *pDstImage;
- long srcLine;
- long *pNextSrcLine;
- struct {
- long srcOffset;
- long nBytesToRead;
- long *pDstOffset;
- long *pNBytesWritten;
- } compressed;
- long filler [8];
- } ilExecuteData;
- typedef struct {
- ilObject consumerImage;
- long stripHeight;
- ilBool constantStrip;
- long minBufferHeight;
- } ilSrcElementData;
- typedef struct {
- ilObject producerObject;
- const ilImageDes *pDes;
- const ilImageFormat *pFormat;
- long width, height;
- long stripHeight;
- ilBool constantStrip;
- unsigned short *pPalette;
- ilPtr pCompData;
- } ilDstElementData;
- extern ilBool ilDeclarePipeInvalid (
- #if NeedFunctionPrototypes
- ilPipe pipe,
- ilError error
- #endif
- );
- extern unsigned int ilGetPipeInfo (
- #if NeedFunctionPrototypes
- ilPipe pipe,
- ilBool forceDecompress,
- ilPipeInfo *pInfo, /* RETURNED */
- ilImageDes *pDes, /* RETURNED */
- ilImageFormat *pFormat /* RETURNED */
- #endif
- );
- extern void ilGetBytesPerRow (
- #if NeedFunctionPrototypes
- const ilImageDes *pDes,
- const ilImageFormat *pFormat,
- long width,
- long *pnBytesPerRow /* RETURNED */
- #endif
- );
- extern long ilRecommendedStripHeight (
- #if NeedFunctionPrototypes
- const ilImageDes *pDes,
- const ilImageFormat *pFormat,
- long width,
- long height
- #endif
- );
- extern ilPtr ilAddPipeElement (
- #if NeedFunctionPrototypes
- ilPipe pipe,
- int elementType,
- /* Use portable type for sizeof() operator, bug report OSF_QAR# 32082 */
- size_t nBytesPrivate,
- unsigned long flags,
- ilSrcElementData *pSrcData,
- ilDstElementData *pDstData,
- ilError (*Init)(),
- ilError (*Cleanup)(),
- ilError (*Destroy)(),
- /*
- ** Added another execute function for passing in a fourth
- ** parameter which is a floating pointing.
- */
- ilError (*ExecuteThree)(),
- ilError (*ExecuteFour)( ilExecuteData *,
- long,
- long *,
- float),
- unsigned long mustBeZero
- #endif
- );
- #ifdef __cplusplus
- } /* for C++ V2.0 */
- #endif
- #endif
|