dol: initial dol commit
[jump.git] / dol / examples / example7 / src / consumer.h
1 #ifndef CONSUMER_H
2 #define CONSUMER_H
3
4 #include <dol.h>
5 #include "global.h"
6
7 #define PORT_IN "in"
8
9 typedef struct _local_states
10 {
11 } Consumer_State;
12
13 void consumer_init(DOLProcess *);
14 int consumer_fire(DOLProcess *);
15
16 #endif