diff options
Diffstat (limited to 'apps/settings/main.hpp')
-rw-r--r-- | apps/settings/main.hpp | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/apps/settings/main.hpp b/apps/settings/main.hpp new file mode 100644 index 0000000..0626dc7 --- /dev/null +++ b/apps/settings/main.hpp @@ -0,0 +1,13 @@ +#ifndef __SETTINGS_H__ +#define __SETTINGS_H__ +#include "../../api.hpp" + +namespace app_settings { + int init(Api *app_api); + int render(Api *app_api); + int btnpressed(Api *app_api, uint gpio, unsigned long delta); + int bgrefresh(Api *app_api, bool in_foreground); + int destroy(Api *app_api); +} + +#endif |