minIni_cache.h 304 B

12345678910
  1. // Custom .ini file access caching layer for minIni.
  2. // This reduces boot delay by only reading the ini file once
  3. // after boot or SD-card removal.
  4. #pragma once
  5. void invalidate_ini_cache();
  6. // Note: filename must be statically allocated, pointer is stored.
  7. void reload_ini_cache(const char *filename);