You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
358 B
12 lines
358 B
#ifndef __SECTIONMAP_H
|
|
#define __SECTIONMAP_H
|
|
|
|
#include <exec/types.h>
|
|
#include <proto/containerkit.h>
|
|
#include "configmodel.h"
|
|
|
|
SectionMap SectionMapNew(VOID);
|
|
VOID SectionMapSet(SectionMap map, CONST_STRPTR canonicalName, SECTIONPTR section);
|
|
SECTIONPTR SectionMapGet(SectionMap map, CONST_STRPTR canonicalName);
|
|
VOID SectionMapFree(SectionMap map);
|
|
#endif |