diff options
author | Martin Szulecki | 2013-09-27 02:20:09 +0200 |
---|---|---|
committer | Martin Szulecki | 2013-09-27 02:20:09 +0200 |
commit | c84fb716cd998118c95fb59a8ba4d3e26a673749 (patch) | |
tree | 9380312613149f810f8032158f9adb90ed69866f /src | |
parent | 0208d9c4045d484509515b808c47a2b16f84d9fc (diff) | |
download | libirecovery-c84fb716cd998118c95fb59a8ba4d3e26a673749.tar.gz libirecovery-c84fb716cd998118c95fb59a8ba4d3e26a673749.tar.bz2 |
libirecovery: Provide helper to get current device mode
Diffstat (limited to 'src')
-rw-r--r-- | src/libirecovery.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/libirecovery.c b/src/libirecovery.c index 3bd57df..e81ed2e 100644 --- a/src/libirecovery.c +++ b/src/libirecovery.c @@ -1205,6 +1205,15 @@ irecv_error_t irecv_getret(irecv_client_t client, unsigned int* value) { return IRECV_E_SUCCESS; } +irecv_error_t irecv_get_mode(irecv_client_t client, int* mode) { + if (check_context(client) != IRECV_E_SUCCESS) + return IRECV_E_NO_DEVICE; + + *mode = client->mode; + + return IRECV_E_SUCCESS; +} + irecv_error_t irecv_get_cpid(irecv_client_t client, unsigned int* cpid) { if (check_context(client) != IRECV_E_SUCCESS) return IRECV_E_NO_DEVICE; |