2017-10-18 14:09:10 +02:00
|
|
|
/**
|
2023-07-05 13:05:19 +02:00
|
|
|
* @file lv_demo_multilang.h
|
2017-10-18 14:09:10 +02:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2023-07-05 13:05:19 +02:00
|
|
|
#ifndef LV_DEMO_MULTILANG_H
|
|
|
|
#define LV_DEMO_MULTILANG_H
|
2017-10-18 14:09:10 +02:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/*********************
|
|
|
|
* INCLUDES
|
|
|
|
*********************/
|
2023-07-05 13:05:19 +02:00
|
|
|
#include "../lv_demos.h"
|
2017-10-18 14:09:10 +02:00
|
|
|
|
|
|
|
/*********************
|
|
|
|
* DEFINES
|
|
|
|
*********************/
|
2023-02-20 20:50:58 +01:00
|
|
|
|
2017-10-18 14:09:10 +02:00
|
|
|
/**********************
|
|
|
|
* TYPEDEFS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
/**********************
|
|
|
|
* GLOBAL PROTOTYPES
|
|
|
|
**********************/
|
2023-07-05 13:05:19 +02:00
|
|
|
void lv_demo_multilang(void);
|
2017-10-18 14:09:10 +02:00
|
|
|
|
|
|
|
/**********************
|
|
|
|
* MACROS
|
|
|
|
**********************/
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
2023-07-05 13:05:19 +02:00
|
|
|
} /* extern "C" */
|
2017-10-18 14:09:10 +02:00
|
|
|
#endif
|
|
|
|
|
2023-07-05 13:05:19 +02:00
|
|
|
#endif /*LV_DEMO_MULTILANG_H*/
|