]> cloudbase.mooo.com Git - z180-stamp.git/blob - include/background.h
Version 0.6.8.3
[z180-stamp.git] / include / background.h
1 /*
2 * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7 #ifndef BACKGROUND_H
8 #define BACKGROUND_H
9
10 typedef int (*bg_func)(int);
11
12 int bg_register(bg_func f, int initval);
13 int bg_setstat(int handle, int val);
14 int bg_getstat(int handle);
15 void bg_shed(void);
16
17 #endif /* BACKGROUND_H */