blob: 6c93e1e2221ba97d8ccc674374a5754710ee8ce1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef IDEVICERESTORE_ACE3_H
#define IDEVICERESTORE_ACE3_H
#ifdef __cplusplus
extern "C" {
#endif
#include <stdint.h>
#include <plist/plist.h>
int ace3_create_binary(const void* uarp_fw, size_t uarp_size, uint64_t bdid, unsigned int prev, plist_t tss, void** bin_out, size_t* bin_size);
#ifdef __cplusplus
}
#endif
#endif
|