diff options
Diffstat (limited to 'src/house_arrest.c')
| -rw-r--r-- | src/house_arrest.c | 21 | 
1 files changed, 14 insertions, 7 deletions
| diff --git a/src/house_arrest.c b/src/house_arrest.c index 135fc01..06068c6 100644 --- a/src/house_arrest.c +++ b/src/house_arrest.c @@ -19,9 +19,16 @@   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA   */ +#ifdef HAVE_CONFIG_H +#include <config.h> +#endif  #include <string.h>  #include <stdlib.h> + +#ifndef _MSC_VER  #include <unistd.h> +#endif +  #include <plist/plist.h>  #include "house_arrest.h" @@ -55,7 +62,7 @@ static house_arrest_error_t house_arrest_error(property_list_service_error_t err  	return HOUSE_ARREST_E_UNKNOWN_ERROR;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_client_new(idevice_t device, lockdownd_service_descriptor_t service, house_arrest_client_t *client) +house_arrest_error_t house_arrest_client_new(idevice_t device, lockdownd_service_descriptor_t service, house_arrest_client_t *client)  {  	property_list_service_client_t plistclient = NULL;  	house_arrest_error_t err = house_arrest_error(property_list_service_client_new(device, service, &plistclient)); @@ -71,14 +78,14 @@ LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_client_new(idevice_t devi  	return HOUSE_ARREST_E_SUCCESS;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_client_start_service(idevice_t device, house_arrest_client_t * client, const char* label) +house_arrest_error_t house_arrest_client_start_service(idevice_t device, house_arrest_client_t * client, const char* label)  {  	house_arrest_error_t err = HOUSE_ARREST_E_UNKNOWN_ERROR;  	service_client_factory_start_service(device, HOUSE_ARREST_SERVICE_NAME, (void**)client, label, SERVICE_CONSTRUCTOR(house_arrest_client_new), &err);  	return err;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_client_free(house_arrest_client_t client) +house_arrest_error_t house_arrest_client_free(house_arrest_client_t client)  {  	if (!client)  		return HOUSE_ARREST_E_INVALID_ARG; @@ -93,7 +100,7 @@ LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_client_free(house_arrest_  	return err;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_send_request(house_arrest_client_t client, plist_t dict) +house_arrest_error_t house_arrest_send_request(house_arrest_client_t client, plist_t dict)  {  	if (!client || !client->parent || !dict)  		return HOUSE_ARREST_E_INVALID_ARG; @@ -109,7 +116,7 @@ LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_send_request(house_arrest  	return res;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_send_command(house_arrest_client_t client, const char *command, const char *appid) +house_arrest_error_t house_arrest_send_command(house_arrest_client_t client, const char *command, const char *appid)  {  	if (!client || !client->parent || !command || !appid)  		return HOUSE_ARREST_E_INVALID_ARG; @@ -129,7 +136,7 @@ LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_send_command(house_arrest  	return res;  } -LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_get_result(house_arrest_client_t client, plist_t *dict) +house_arrest_error_t house_arrest_get_result(house_arrest_client_t client, plist_t *dict)  {  	if (!client || !client->parent)  		return HOUSE_ARREST_E_INVALID_ARG; @@ -147,7 +154,7 @@ LIBIMOBILEDEVICE_API house_arrest_error_t house_arrest_get_result(house_arrest_c  	return res;  } -LIBIMOBILEDEVICE_API afc_error_t afc_client_new_from_house_arrest_client(house_arrest_client_t client, afc_client_t *afc_client) +afc_error_t afc_client_new_from_house_arrest_client(house_arrest_client_t client, afc_client_t *afc_client)  {  	if (!client || !client->parent || (client->mode == HOUSE_ARREST_CLIENT_MODE_AFC)) {  		return AFC_E_INVALID_ARG; | 
