romfs.h 292 B

12345678910111213141516
  1. #pragma once
  2. #include <stdint.h>
  3. class ROMFS {
  4. public:
  5. static const char *find_string(const char *fname);
  6. private:
  7. struct embedded_file {
  8. const char *filename;
  9. uint32_t size;
  10. const uint8_t *contents;
  11. };
  12. static const struct embedded_file files[];
  13. };