39 lines
640 B
C
39 lines
640 B
C
/**
|
|
* @file lvgl_private.h
|
|
* This file exists only to be compatible with Arduino's library structure
|
|
*/
|
|
|
|
#ifndef LVGL_PRIVATE_SRC_H
|
|
#define LVGL_PRIVATE_SRC_H
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/*********************
|
|
* INCLUDES
|
|
*********************/
|
|
#include "../lvgl_private.h"
|
|
|
|
/*********************
|
|
* DEFINES
|
|
*********************/
|
|
|
|
/**********************
|
|
* TYPEDEFS
|
|
**********************/
|
|
|
|
/**********************
|
|
* GLOBAL PROTOTYPES
|
|
**********************/
|
|
|
|
/**********************
|
|
* MACROS
|
|
**********************/
|
|
|
|
#ifdef __cplusplus
|
|
} /*extern "C"*/
|
|
#endif
|
|
|
|
#endif /* LVGL_PRIVATE_SRC_H */
|