b.liu | d440f9f | 2025-04-18 10:44:31 +0800 | [diff] [blame^] | 1 | #ifndef FOTA_INFO_H_ |
2 | #define FOTA_INFO_H_ | ||||
3 | |||||
4 | #ifdef __cplusplus | ||||
5 | extern "C" { | ||||
6 | #endif | ||||
7 | |||||
8 | |||||
9 | typedef enum | ||||
10 | { | ||||
11 | SUCCEED = 0, | ||||
12 | UPDATE, | ||||
13 | BACKUP, | ||||
14 | FAILED, | ||||
15 | WRITEDONE, | ||||
16 | NEEDSYNC, | ||||
17 | CANCEL, | ||||
18 | UNKNOWN_STATUS | ||||
19 | } fota_state_t; | ||||
20 | |||||
21 | |||||
22 | #ifdef __cplusplus | ||||
23 | } | ||||
24 | #endif | ||||
25 | |||||
26 | #endif //FOTA_INFO_H_ |