44 lines
631 B
C
44 lines
631 B
C
|
/**
|
|||
|
* @file ui_demo.h
|
|||
|
*
|
|||
|
*/
|
|||
|
|
|||
|
#ifndef __UI_DEMO_H__
|
|||
|
#define __UI_DEMO_H__
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
extern "C" {
|
|||
|
#endif
|
|||
|
|
|||
|
/*********************
|
|||
|
* INCLUDES
|
|||
|
*********************/
|
|||
|
#include "lvgl.h"
|
|||
|
#include "ui_conf.h"
|
|||
|
#include "page/desktop.h"
|
|||
|
#include "page/page.h"
|
|||
|
|
|||
|
|
|||
|
/*********************
|
|||
|
* DEFINES
|
|||
|
*********************/
|
|||
|
|
|||
|
/**********************
|
|||
|
* TYPEDEFS
|
|||
|
**********************/
|
|||
|
|
|||
|
/**********************
|
|||
|
* GLOBAL PROTOTYPES
|
|||
|
**********************/
|
|||
|
void ui_demo(void);
|
|||
|
|
|||
|
/**********************
|
|||
|
* MACROS
|
|||
|
**********************/
|
|||
|
|
|||
|
#ifdef __cplusplus
|
|||
|
} /* extern "C" */
|
|||
|
#endif
|
|||
|
|
|||
|
#endif /*__UI_DEMO_H__*/
|