dol: initial dol commit
[jump.git] / dol / examples / example1 / src / generator.h
1 #ifndef GENERATOR_H
2 #define GENERATOR_H
3
4 #include <dol.h>
5 #include "global.h"
6
7 #define  PORT_OUT 1
8
9 typedef struct _local_states {
10     int index;
11     int len;
12 } Generator_State;
13
14 void generator_init(DOLProcess *);
15 int generator_fire(DOLProcess *);
16
17 #endif