minGlue.h 480 B

12345678910111213
  1. /* Glue functions for the minIni library to the cache functions in minIni_cache.cpp */
  2. #include <SdFat.h>
  3. #define INI_READONLY 1
  4. #define INI_FILETYPE FsFile
  5. #define INI_FILEPOS fspos_t
  6. bool ini_openread(const char *filename, INI_FILETYPE *fp);
  7. bool ini_close(INI_FILETYPE *fp);
  8. bool ini_read(char *buffer, int size, INI_FILETYPE *fp);
  9. void ini_tell(INI_FILETYPE *fp, INI_FILEPOS *pos);
  10. void ini_seek(INI_FILETYPE *fp, INI_FILEPOS *pos);