mirror of
https://github.com/rvtr/TwlToolsRED.git
synced 2025-10-31 06:41:18 -04:00
17 lines
275 B
C
17 lines
275 B
C
#ifndef _MY_NVRAM_H_
|
|
#define _MY_NVRAM_H_
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// BOOL my_nvram_read( u32 offset, u32 size, void *buf);
|
|
BOOL nvram_backup(char *path);
|
|
BOOL nvram_restore(char *path);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* _MY_NVRAM_H_ */
|