You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
601 B
40 lines
601 B
2 years ago
|
/**
|
||
11 months ago
|
* @file lvgl_private.h
|
||
2 years ago
|
*
|
||
|
*/
|
||
|
|
||
11 months ago
|
#ifndef LVGL_PRIVATE_H
|
||
|
#define LVGL_PRIVATE_H
|
||
2 years ago
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
/*********************
|
||
|
* INCLUDES
|
||
|
*********************/
|
||
11 months ago
|
#include "display/lv_display_private.h"
|
||
|
#include "indev/lv_indev_private.h"
|
||
2 years ago
|
|
||
|
/*********************
|
||
|
* DEFINES
|
||
|
*********************/
|
||
|
|
||
|
/**********************
|
||
|
* TYPEDEFS
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* GLOBAL PROTOTYPES
|
||
|
**********************/
|
||
|
|
||
|
/**********************
|
||
|
* MACROS
|
||
|
**********************/
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
} /*extern "C"*/
|
||
|
#endif
|
||
|
|
||
11 months ago
|
#endif /*LVGL_PRIVATE_H*/
|