]> cloudbase.mooo.com Git - z180-stamp.git/blobdiff - include/background.h
Merge branch 'chan-fatfs' into fatfs-integration
[z180-stamp.git] / include / background.h
index a624dbb87b4f6a208270b5ebbba385e3b952b7dd..87e95e5aae762ab854ebc06239aefe8535c4992c 100644 (file)
@@ -1,10 +1,17 @@
+/*
+ * (C) Copyright 2014 Leo C. <erbl259-lmu@yahoo.de>
+ *
+ * SPDX-License-Identifier:    GPL-2.0+
+ */
+
 #ifndef BACKGROUND_H
 #define BACKGROUND_H
 
 typedef int (*bg_func)(int);
 
-int bg_register(bg_func f);
+int bg_register(bg_func f, int initval);
+int bg_setstat(int handle, int val);
+int bg_getstat(int handle);
 void bg_shed(void);
 
 #endif /* BACKGROUND_H */
-