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.
24 lines
401 B
24 lines
401 B
#ifndef __TYPES_H
|
|
#define __TYPES_H
|
|
|
|
#include <exec/types.h>
|
|
#include <dos/dos.h>
|
|
|
|
typedef APTR SECTIONSTOREPTR;
|
|
|
|
typedef APTR LINEPTR;
|
|
typedef APTR SECTIONPTR;
|
|
typedef APTR VARIABLEPTR;
|
|
|
|
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 |