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.
|
|
|
#ifndef __CONFIGMODEL_H
|
|
|
|
#define __CONFIGMODEL_H
|
|
|
|
#include <exec/types.h>
|
|
|
|
#include <dos/dos.h>
|
|
|
|
|
|
|
|
typedef APTR LINEPTR;
|
|
|
|
typedef APTR SECTIONPTR;
|
|
|
|
typedef APTR VARIABLEPTR;
|
|
|
|
typedef APTR CONFIGFILEPTR;
|
|
|
|
|
|
|
|
CONFIGFILEPTR ConfigFileRead(CONST_STRPTR filename);
|
|
|
|
VOID ConfigFileFree(CONFIGFILEPTR abstractConfigFile);
|
|
|
|
|
|
|
|
VOID ConfigFileSave(CONFIGFILEPTR config);
|
|
|
|
|
|
|
|
VOID InitialisePatterns(VOID);
|
|
|
|
VOID ReleasePatterns(VOID);
|
|
|
|
|
|
|
|
LINEPTR LineReadIncludingContinuation(BPTR file);
|
|
|
|
VOID LineFree(LINEPTR abstractLine);
|
|
|
|
CONST_STRPTR LineGetRawText(LINEPTR line);
|
|
|
|
#endif
|