dol: initial dol commit
[jump.git] / dol / examples / example3 / src / horizontal_consumer.h
1 #ifndef CONSUMER_H
2 #define CONSUMER_H
3
4 #include <dol.h>
5
6 #define PORT_IN "h_in"
7
8 typedef struct _local_states {
9     char name[20];
10 } Horizontal_consumer_State;
11
12 void horizontal_consumer_init(DOLProcess *);
13 int horizontal_consumer_fire(DOLProcess *);
14
15 #endif