9 lines
120 B
C
9 lines
120 B
C
#ifndef FLUP_HEAP_H
|
|
#define FLUP_HEAP_H
|
|
|
|
enum HeapDataKind {
|
|
HEAPDATAKIND_OBJECT,
|
|
HEAPDATAKIND_OBJECTTYPE,
|
|
};
|
|
|
|
#endif
|