parent
b06089a99a
commit
a97e790238
@ -0,0 +1,18 @@ |
|||||||
|
#include "linemap.h" |
||||||
|
#include "linearray.h" |
||||||
|
|
||||||
|
LineMap LineMapNew() |
||||||
|
{ |
||||||
|
LineMap result = NewMap(CNTKIT_KEY_STRING, |
||||||
|
CNTKIT_CAPACITY, 8, |
||||||
|
CNTKIT_VALUESIZE, 4, |
||||||
|
TAG_DONE); |
||||||
|
|
||||||
|
return result; |
||||||
|
} |
||||||
|
|
||||||
|
VOID LineMapFree(LineMap map) |
||||||
|
{ |
||||||
|
// doesnt seem to delete contents
|
||||||
|
DeleteMap(map);
|
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
#ifndef __LINEMAP_H |
||||||
|
#define __LINEMAP_H |
||||||
|
|
||||||
|
#include <exec/types.h> |
||||||
|
#include <proto/containerkit.h> |
||||||
|
#include "configmodel.h" |
||||||
|
|
||||||
|
#define LineMap Map |
||||||
|
|
||||||
|
LineMap LineMapNew(VOID); |
||||||
|
|
||||||
|
VOID LineMapFree(LineMap map); |
||||||
|
#endif |
Loading…
Reference in new issue