lv_app_notice added

This commit is contained in:
Kiss-Vamosi Gabor
2016-12-29 07:10:49 +01:00
parent 3019787dcf
commit 2f11b276ac
8 changed files with 202 additions and 22 deletions

View File

@@ -0,0 +1,35 @@
/**
* @file lv_app_notice.h
*
*/
#ifndef LV_APP_NOTICE_H
#define LV_APP_NOTICE_H
/*********************
* INCLUDES
*********************/
#include "../lv_app.h"
#if LV_APP_ENABLE != 0
/*********************
* DEFINES
*********************/
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
void lv_app_notice_init(void);
void lv_app_notice_add(const char * txt);
/**********************
* MACROS
**********************/
#endif /*LV_APP_NOTICE_H*/
#endif