These sohuld be global.

SVN revision: 16572
This commit is contained in:
sebastid 2005-09-05 15:10:34 +00:00 committed by sebastid
parent ac0f8ec127
commit da1ce663a9
1 changed files with 4 additions and 7 deletions

View File

@ -1,14 +1,11 @@
#include "ecore_private.h"
#include "Ecore_Data.h"
# define ECORE_SHEAP_MIN 0
# define ECORE_SHEAP_MAX 1
#define HEAP_INCREMENT 4096
# define HEAP_INCREMENT 4096
# define PARENT(i) (i / 2)
# define LEFT(i) (2 * i)
# define RIGHT(i) (2 * i + 1)
#define PARENT(i) (i / 2)
#define LEFT(i) (2 * i)
#define RIGHT(i) (2 * i + 1)
static void _ecore_sheap_heapify(Ecore_Sheap *heap, int i);
static void _ecore_sheap_update_data(Ecore_Sheap *heap);