1 Star 0 Fork 11

cfqdream / lv_chinese_ime

forked from 韦东山 / lv_chinese_ime 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
lv_chinese_ime.h 1.08 KB
一键复制 编辑 原始数据 按行查看 历史
周岳标 提交于 2022-02-08 17:15 . first commit
/**
* @file lv_chinese_ime.h
*
*/
#ifndef LV_CHINESE_IME_H
#define LV_CHINESE_IME_H
#ifdef __cplusplus
extern "C" {
#endif
/*********************
* INCLUDES
*********************/
#if defined(LV_LVGL_H_INCLUDE_SIMPLE)
#include "lvgl.h"
#else
#include "../lvgl/lvgl.h"
#endif
#if defined(LV_CHINESE_IME_CONF_PATH)
#define __LV_TO_STR_AUX(x) #x
#define __LV_TO_STR(x) __LV_TO_STR_AUX(x)
#include __LV_TO_STR(LV_CHINESE_IME_CONF_PATH)
#undef __LV_TO_STR_AUX
#undef __LV_TO_STR
#elif defined(LV_CHINESE_IME_CONF_INCLUDE_SIMPLE)
#include "lv_chinese_ime_conf.h"
#else
#include "../lv_chinese_ime_conf.h"
#endif
#include "src/chinese_ime.h"
/*********************
* DEFINES
*********************/
/*Test lvgl version*/
#if LV_VERSION_CHECK(8, 1, 0) == 0
#error "lv_chinese_ime: Wrong lvgl version"
#endif
/**********************
* TYPEDEFS
**********************/
/**********************
* GLOBAL PROTOTYPES
**********************/
/**********************
* MACROS
**********************/
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif /*LV_CHINESE_IME_H*/
1
https://gitee.com/cfqdream/lv_chinese_ime.git
git@gitee.com:cfqdream/lv_chinese_ime.git
cfqdream
lv_chinese_ime
lv_chinese_ime
master

搜索帮助