mirror of
https://github.com/ddv2005/AirsoftTracker.git
synced 2025-07-27 15:19:32 +00:00
28 lines
396 B
C
28 lines
396 B
C
#ifndef APP_H
|
|
#define APP_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**********************
|
|
* INCLUDES
|
|
**********************/
|
|
|
|
#include "lvgl/lvgl.h"
|
|
|
|
/**********************
|
|
* WIDGETS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
void app_create(lv_obj_t *parent);
|
|
|
|
#ifdef __cplusplus
|
|
} /* extern "C" */
|
|
#endif
|
|
|
|
#endif /*APP_H*/ |