acid-drop

- Hacking the planet from a LilyGo T-Deck using custom firmware
git clone git://git.acid.vegas/acid-drop.git
Log | Files | Refs | Archive | README | LICENSE

lv_fsdrv.h (811B)

      1 /**
      2  * @file lv_fsdrv.h
      3  *
      4  */
      5 
      6 #ifndef LV_FSDRV_H
      7 #define LV_FSDRV_H
      8 
      9 #ifdef __cplusplus
     10 extern "C" {
     11 #endif
     12 
     13 /*********************
     14  *      INCLUDES
     15  *********************/
     16 #include "../../../lv_conf_internal.h"
     17 
     18 /*********************
     19  *      DEFINES
     20  *********************/
     21 
     22 /**********************
     23  *      TYPEDEFS
     24  **********************/
     25 
     26 /**********************
     27  * GLOBAL PROTOTYPES
     28  **********************/
     29 
     30 #if LV_USE_FS_FATFS != '\0'
     31 void lv_fs_fatfs_init(void);
     32 #endif
     33 
     34 #if LV_USE_FS_STDIO != '\0'
     35 void lv_fs_stdio_init(void);
     36 #endif
     37 
     38 #if LV_USE_FS_POSIX != '\0'
     39 void lv_fs_posix_init(void);
     40 #endif
     41 
     42 #if LV_USE_FS_WIN32 != '\0'
     43 void lv_fs_win32_init(void);
     44 #endif
     45 
     46 /**********************
     47  *      MACROS
     48  **********************/
     49 
     50 #ifdef __cplusplus
     51 } /* extern "C" */
     52 #endif
     53 
     54 #endif /*LV_FSDRV_H*/
     55