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.
configreader/sectionstore.h

18 lines
463 B

#ifndef __SECTIONSTORE_H
#define __SECTIONSTORE_H
#include <exec/types.h>
typedef APTR SECTIONSTOREPTR;
#include "configmodel.h"
SECTIONSTOREPTR SectionStoreNew(VOID);
VOID SectionStoreFree(SECTIONSTOREPTR sectionStore);
VOID SectionStoreAddSection(SECTIONPTR section);
VOID SectionStoreRemoveSection(SECTIONPTR section);
VOID SectionStoreRemoveSectionByName(CONST_STRPTR canonicalName);
SECTIONPTR SectionStoreGetSection(CONST_STRPTR canonicalName);
#endif