From 101d256cb414103f362632fd85d7a79535f85dc9 Mon Sep 17 00:00:00 2001
From: Marcus Comstedt <marcus@mc.pp.se>
Date: Fri, 9 Apr 1999 19:56:51 +0200
Subject: [PATCH] Added some prototypes.

Rev: src/modules/Image/colortable.h:1.15
---
 src/modules/Image/colortable.h | 32 +++++++++++++++++++++++++++++++-
 1 file changed, 31 insertions(+), 1 deletion(-)

diff --git a/src/modules/Image/colortable.h b/src/modules/Image/colortable.h
index 652b4fc5dc..c2a3379017 100644
--- a/src/modules/Image/colortable.h
+++ b/src/modules/Image/colortable.h
@@ -1,7 +1,7 @@
 /*
 **! module Image
 **! note
-**!	$Id: colortable.h,v 1.14 1999/04/09 14:16:09 per Exp $
+**!	$Id: colortable.h,v 1.15 1999/04/09 17:56:51 marcus Exp $
 */
 
 #ifdef PIKE_IMAGE_COLORTABLE_H
@@ -219,6 +219,36 @@ int image_colortable_index_16bit_image(struct neo_colortable *nct,
 				      int len,
 				      int rowlen);
 
+int image_colortable_index_32bit_image(struct neo_colortable *nct,
+				       rgb_group *s,
+				       unsigned INT32 *d,
+				       int len,
+				       int rowlen);
+
+void (*image_colortable_index_8bit_function(struct neo_colortable *nct))
+     (rgb_group *s,
+      unsigned char *d,
+      int n,
+      struct neo_colortable *nct,
+      struct nct_dither *dith,
+      int rowlen);
+
+void (*image_colortable_index_16bit_function(struct neo_colortable *nct))
+     (rgb_group *s,
+      unsigned short *d,
+      int n,
+      struct neo_colortable *nct,
+      struct nct_dither *dith,
+      int rowlen);
+
+void (*image_colortable_index_32bit_function(struct neo_colortable *nct))
+     (rgb_group *s,
+      unsigned INT32 *d,
+      int n,
+      struct neo_colortable *nct,
+      struct nct_dither *dith,
+      int rowlen);
+
 void image_colortable_internal_floyd_steinberg(struct neo_colortable *nct);
 
 int image_colortable_map_image(struct neo_colortable *nct,
-- 
GitLab