Files
99_7018_lmx/apps/common/include/cfg_private.h

13 lines
404 B
C
Raw Normal View History

2025-10-29 13:10:02 +08:00
#ifndef _CFG_PRIVATE_H
#define _CFG_PRIVATE_H
int cfg_private_delete_file(FILE *file);
int cfg_private_write(FILE *file, void *buf, u32 len);
FILE *cfg_private_open(const char *path, const char *mode);
int cfg_private_read(FILE *file, void *buf, u32 len);
int cfg_private_close(FILE *file);
int cfg_private_seek(FILE *file, int offset, int fromwhere);
void cfg_private_erase(u32 addr, u32 len);
#endif