dol: fix shm_t contain the shm-buffers
[jump.git] / minidol / esrc / Square.h
1 #ifndef SQUARE_H
2 #define SQUARE_H
3
4 #include <dol.h>
5
6 #define PORT_INPUT "0"
7 #define PORT_OUTPUT "1"
8
9 #define LENGTH 8
10
11 typedef struct _local_states {
12         int index;
13 } Square_State;
14
15 void Square_init(DOLProcess *);
16 int Square_fire(DOLProcess *);
17
18 #endif