dol: initial dol commit
[jump.git] / dol / examples / example6 / src / producer.h
1 #ifndef PRODUCER_H
2 #define PRODUCER_H
3
4 #include <dol.h>
5 #include "stdlib.h"
6
7 #define PORT_OUT "out"
8
9 typedef struct _local_states
10 {
11   float sample[10];
12 } Producer_State;
13
14 void producer_init(DOLProcess *);
15 int producer_fire(DOLProcess *);
16
17 #endif