1234567891011121314151617181920212223 |
- /*
- * Copyright (c) 2006-2021, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2021-10-18 Meco Man The first version
- */
- #ifndef LV_PORT_INDEV_H
- #define LV_PORT_INDEV_H
- #ifdef __cplusplus
- extern "C" {
- #endif
- void lv_port_indev_init(void);
- #ifdef __cplusplus
- } /*extern "C"*/
- #endif
- #endif
|