2016-12-29 07:10:49 +01:00
|
|
|
/**
|
|
|
|
* @file lv_app_notice.h
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef LV_APP_NOTICE_H
|
|
|
|
#define LV_APP_NOTICE_H
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
|
|
|
#include "../lv_app.h"
|
2017-01-06 13:39:13 +01:00
|
|
|
#include <stdarg.h>
|
2016-12-29 07:10:49 +01:00
|
|
|
#if LV_APP_ENABLE != 0
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
|
|
|
void lv_app_notice_init(void);
|
2017-01-06 13:39:13 +01:00
|
|
|
void lv_app_notice_add(const char * format, ...);
|
2016-12-29 07:10:49 +01:00
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#endif /*LV_APP_NOTICE_H*/
|
|
|
|
|
|
|
|
#endif
|