17 lines
371 B
C
17 lines
371 B
C
|
|
#ifndef AVB_OPS_USER_H_
|
||
|
|
#define AVB_OPS_USER_H_
|
||
|
|
|
||
|
|
#include <android_avb/libavb.h>
|
||
|
|
#include <android_avb/avb_ab_flow.h>
|
||
|
|
|
||
|
|
|
||
|
|
|
||
|
|
AvbOps* avb_ops_user_new(void);
|
||
|
|
void avb_ops_user_free(AvbOps* ops);
|
||
|
|
int read_slot_count(char *slot_count);
|
||
|
|
int read_slot_suffixes(char *slot_suffixes);
|
||
|
|
int set_slot_active(unsigned int *slot_number);
|
||
|
|
int get_current_slot(char *select_slot);
|
||
|
|
|
||
|
|
#endif
|