1 /******************************************************************* 2 * @file lv_example_gestures.h 3 * 4 * Copyright (c) 2024 EDGEMTech Ltd. 5 * 6 * Author: EDGEMTech Ltd, Erik Tagirov (erik.tagirov@edgemtech.ch) 7 * 8 ******************************************************************/ 9 10 #ifndef LV_EXAMPLE_GESTURES_H 11 #define LV_EXAMPLE_GESTURES_H 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 /********************* 18 * INCLUDES 19 *********************/ 20 21 /********************* 22 * DEFINES 23 *********************/ 24 25 /********************** 26 * TYPEDEFS 27 **********************/ 28 29 /********************** 30 * GLOBAL PROTOTYPES 31 **********************/ 32 33 /* Example entry point */ 34 void lv_example_gestures(void); 35 36 /********************** 37 * MACROS 38 **********************/ 39 40 #ifdef __cplusplus 41 } /*extern "C"*/ 42 #endif 43 44 #endif /*LV_EXAMPLE_GESTURES_H*/ 45