mirror of
				https://github.com/python-pillow/Pillow.git
				synced 2025-10-30 23:47:27 +03:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			469 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			469 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * The Python Imaging Library
 | |
|  * $Id$
 | |
|  *
 | |
|  * 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
 |