diff options
author | Martin Szulecki | 2012-11-07 22:11:57 +0100 |
---|---|---|
committer | Martin Szulecki | 2012-11-07 22:11:57 +0100 |
commit | 3bd16a8b8b79cd9af20260cdbd5d3ac7ee3dbd8b (patch) | |
tree | 124ea4690334903f57007fbf5efafd0730b320fb /src/idevicerestore.h | |
parent | b65a7ce7ebca6730fce5dcbfd820d8ef4124e18f (diff) | |
download | idevicerestore-3bd16a8b8b79cd9af20260cdbd5d3ac7ee3dbd8b.tar.gz idevicerestore-3bd16a8b8b79cd9af20260cdbd5d3ac7ee3dbd8b.tar.bz2 |
change info(), error(), and debug() into functions and allow redirecting the output
Diffstat (limited to 'src/idevicerestore.h')
-rw-r--r-- | src/idevicerestore.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/idevicerestore.h b/src/idevicerestore.h index c7c80dc..6f34743 100644 --- a/src/idevicerestore.h +++ b/src/idevicerestore.h @@ -61,6 +61,9 @@ void idevicerestore_set_flags(struct idevicerestore_client_t* client, int flags) void idevicerestore_set_ipsw(struct idevicerestore_client_t* client, const char* path); void idevicerestore_set_progress_callback(struct idevicerestore_client_t* client, idevicerestore_progress_cb_t cbfunc, void* userdata); +void idevicerestore_set_info_stream(FILE* strm); +void idevicerestore_set_error_stream(FILE* strm); +void idevicerestore_set_debug_stream(FILE* strm); int idevicerestore_start(struct idevicerestore_client_t* client); |