summaryrefslogtreecommitdiff
path: root/colm/program.h
diff options
context:
space:
mode:
Diffstat (limited to 'colm/program.h')
-rw-r--r--colm/program.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/colm/program.h b/colm/program.h
index 60cede1e..225dc140 100644
--- a/colm/program.h
+++ b/colm/program.h
@@ -32,7 +32,7 @@ typedef struct ColmStackBlock
struct ColmStackBlock *next;
} StackBlock;
-typedef struct ColmRuntimeData
+typedef struct colm_sections
{
LangElInfo *lelInfo;
long numLangEls;
@@ -90,7 +90,7 @@ typedef struct ColmRuntimeData
long noTokenId;
void (*fsmExecute)( struct _FsmRun *fsmRun, struct _StreamImpl *inputStream );
- void (*sendNamedLangEl)( struct ColmProgram *prg, Tree **tree, struct _PdaRun *pdaRun,
+ void (*sendNamedLangEl)( struct colm_program *prg, Tree **tree, struct _PdaRun *pdaRun,
struct _FsmRun *fsmRun, struct _StreamImpl *inputStream );
void (*initBindings)( struct _PdaRun *pdaRun );
void (*popBinding)( struct _PdaRun *pdaRun, ParseTree *tree );
@@ -98,7 +98,7 @@ typedef struct ColmRuntimeData
} RuntimeData;
-typedef struct ColmProgram
+typedef struct colm_program
{
long activeRealm;