Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/Imaging/libImaging/QuantHeap.h
diff options
context:
space:
mode:
Diffstat (limited to 'Imaging/libImaging/QuantHeap.h')
-rw-r--r--Imaging/libImaging/QuantHeap.h23
1 files changed, 23 insertions, 0 deletions
diff --git a/Imaging/libImaging/QuantHeap.h b/Imaging/libImaging/QuantHeap.h
new file mode 100644
index 0000000..ddd0a22
--- /dev/null
+++ b/Imaging/libImaging/QuantHeap.h
@@ -0,0 +1,23 @@
+/*
+ * The Python Imaging Library
+ * $Id: QuantHeap.h 2134 2004-10-06 08:55:20Z fredrik $
+ *
+ * image quantizer
+ *
+ * Written by Toby J Sargeant <tjs@longford.cs.monash.edu.au>.
+ *
+ * See the README file for information on usage and redistribution.
+ */
+
+#ifndef __HEAP_H__
+#define __HEAP_H__
+
+#include "QuantTypes.h"
+
+void ImagingQuantHeapFree(Heap);
+int ImagingQuantHeapRemove(Heap,void **);
+int ImagingQuantHeapAdd(Heap,void *);
+int ImagingQuantHeapTop(Heap,void **);
+Heap *ImagingQuantHeapNew(HeapCmpFunc);
+
+#endif