mirror of
https://github.com/openmoh/openmohaa.git
synced 2025-04-28 21:57:57 +03:00
11 lines
185 B
C
11 lines
185 B
C
![]() |
#ifndef _BACKUP_H_
|
||
|
#define _BACKUP_H_
|
||
|
|
||
|
void BackupInit(void);
|
||
|
|
||
|
BOOL BackupExists(void);
|
||
|
|
||
|
BOOL WriteToBackup(const void * src, int len);
|
||
|
BOOL ReadFromBackup(void * dst, int len);
|
||
|
|
||
|
#endif
|