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/types.h

25 lines
429 B

#ifndef __TYPES_H
#define __TYPES_H
#include <exec/types.h>
1 year ago
#include <dos/dos.h>
typedef APTR SECTIONSTOREPTR;
typedef APTR LINEPTR;
typedef APTR SECTIONPTR;
typedef APTR VARIABLEPTR;
typedef APTR CONFIGFILEPTR;
typedef APTR PATTERNPTR;
typedef APTR StringArray;
typedef APTR LineArray;
typedef APTR SectionArray;
typedef APTR VariableArray;
typedef APTR SectionMap; // a map of string (canonical name) to Section
#endif