summaryrefslogtreecommitdiff
path: root/lbximage.h
diff options
context:
space:
mode:
authorKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:02 +0000
committerKaleb Keithley <kaleb@freedesktop.org>2003-11-25 19:28:02 +0000
commit023a09fe640f876478157e5b4cd9cfec1452da4b (patch)
treef62c24617ddc9ece3ee5fc252be716aac981dc3f /lbximage.h
parent343e78e15048e6a25791449bfc7566c07ccddf28 (diff)
downloadxorg-proto-xextproto-023a09fe640f876478157e5b4cd9cfec1452da4b.tar.gz
XFree86 4.3.99.16 Bring the tree up to date for the Cygwin folksxf86-4_3_99_903_specialxf86-4_3_99_902xf86-4_3_99_901xf86-4_3_99_16xf86-012804-2330
Diffstat (limited to 'lbximage.h')
-rw-r--r--lbximage.h22
1 files changed, 1 insertions, 21 deletions
diff --git a/lbximage.h b/lbximage.h
index cc6faa3..89d1abf 100644
--- a/lbximage.h
+++ b/lbximage.h
@@ -25,7 +25,7 @@ used in advertising or otherwise to promote the sale, use or other dealings
in this Software without prior written authorization from The Open Group.
******************************************************************************/
-/* $XFree86: xc/include/extensions/lbximage.h,v 1.4 2001/12/20 19:28:54 tsi Exp $ */
+/* $XFree86: xc/include/extensions/lbximage.h,v 1.5 2003/11/17 22:20:03 dawes Exp $ */
#ifndef _LBX_IMAGE_H_
#define _LBX_IMAGE_H_
@@ -41,13 +41,10 @@ typedef struct _LbxBitmapCompMethod {
int methodOpCode; /* to be filled on reply from server */
int (*compInit)(
-#if NeedFunctionPrototypes
void
-#endif
);
int (*compFunc)(
-#if NeedFunctionPrototypes
unsigned char * /* inbuf */,
unsigned char * /* outbuf */,
int /* outbufSize */,
@@ -56,18 +53,15 @@ typedef struct _LbxBitmapCompMethod {
int /* padded_bytes_per_scanline */,
int /* reverse_bits */,
int * /* bytesCompressed */
-#endif
);
int (*decompFunc)(
-#if NeedFunctionPrototypes
unsigned char * /* inbuf */,
unsigned char * /* outbuf */,
int /* image_bytes */,
int /* pixels_per_line */,
int /* padded_bytes_per_scanline */,
int /* reverse_bits */
-#endif
);
} LbxBitmapCompMethod;
@@ -85,13 +79,10 @@ typedef struct _LbxPixmapCompMethod {
int methodOpCode; /* to be filled on reply from server */
int (*compInit)(
-#if NeedFunctionPrototypes
void
-#endif
);
int (*compFunc)(
-#if NeedFunctionPrototypes
char * /* inbuf */,
char * /* outbuf */,
int /* outbufSize */,
@@ -100,23 +91,19 @@ typedef struct _LbxPixmapCompMethod {
int /* num_scan_lines */,
int /* scan_line_size */,
int * /* bytesCompressed */
-#endif
);
int (*decompFunc)(
-#if NeedFunctionPrototypes
char * /* inbuf */,
char * /* outbuf */,
int /* num_scan_lines */,
int /* scan_line_size */
-#endif
);
} LbxPixmapCompMethod;
extern int LbxImageEncodePackBits (
-#if NeedFunctionPrototypes
char * /* inbuf */,
char * /* outbuf */,
int /* outbufSize */,
@@ -125,11 +112,9 @@ int /* depth */,
int /* num_scan_lines */,
int /* scan_line_size */,
int * /* bytesCompressed */
-#endif
);
extern int LbxImageEncodeFaxG42D (
-#if NeedFunctionPrototypes
unsigned char * /* inbuf */,
unsigned char * /* outbuf */,
int /* outbufSize */,
@@ -138,27 +123,22 @@ int /* pixels_per_line */,
int /* padded_bytes_per_scanline */,
int /* reverse_bits */,
int * /* bytesCompressed */
-#endif
);
extern int LbxImageDecodePackBits (
-#if NeedFunctionPrototypes
char * /* inbuf */,
char * /* outbuf */,
int /* num_scan_lines */,
int /* scan_line_size */
-#endif
);
extern int LbxImageDecodeFaxG42D (
-#if NeedFunctionPrototypes
unsigned char * /* inbuf */,
unsigned char * /* outbuf */,
int /* image_bytes */,
int /* pixels_per_line */,
int /* padded_bytes_per_scanline */,
int /* reverse_bits */
-#endif
);
_XFUNCPROTOEND