]> cloudbase.mooo.com Git - z180-stamp.git/blame - include/background.h
working host communication, new command: connect
[z180-stamp.git] / include / background.h
CommitLineData
72f58822
L
1#ifndef BACKGROUND_H
2#define BACKGROUND_H
3
4typedef int (*bg_func)(int);
5
89adce76
L
6int bg_register(bg_func f, int initval);
7int bg_setstat(int handle, int val);
8int bg_getstat(int handle);
72f58822
L
9void bg_shed(void);
10
11#endif /* BACKGROUND_H */
12