memory.h 530 B

123456789101112131415161718
  1. /******************************************************************************
  2. * MiniFFS : Mini Flat File System
  3. * platform/memory.h: Specific functions for the Memory backend
  4. *
  5. * Copyright (c) 2008-2022 986-Studio. All rights reserved.
  6. *
  7. ******************************************************************************/
  8. #ifndef MINIFFS_PLATFORM_MEMORY_H
  9. #define MINIFFS_PLATFORM_MEMORY_H
  10. typedef struct miniffs_t
  11. {
  12. miniffs_header_t *header;
  13. void *memoryOffset;
  14. } miniffs_t;
  15. #endif /* MINIFFS_PLATFORM_MEMORY_H */