libimobiledevice
1.1.5
|
Retrieve a screenshot from device. More...
Typedefs | |
typedef int16_t | screenshotr_error_t |
Represents an error code. | |
typedef screenshotr_client_private * | screenshotr_client_t |
The client handle. |
Functions | |
screenshotr_error_t | screenshotr_client_new (idevice_t device, lockdownd_service_descriptor_t service, screenshotr_client_t *client) |
Connects to the screenshotr service on the specified device. | |
screenshotr_error_t | screenshotr_client_free (screenshotr_client_t client) |
Disconnects a screenshotr client from the device and frees up the screenshotr client data. | |
screenshotr_error_t | screenshotr_take_screenshot (screenshotr_client_t client, char **imgdata, uint64_t *imgsize) |
Get a screen shot from the connected device. |
Retrieve a screenshot from device.
The client handle.
typedef int16_t screenshotr_error_t |
Represents an error code.
screenshotr_error_t screenshotr_client_free | ( | screenshotr_client_t | client | ) |
Disconnects a screenshotr client from the device and frees up the screenshotr client data.
client | The screenshotr client to disconnect and free. |
screenshotr_error_t screenshotr_client_new | ( | idevice_t | device, |
lockdownd_service_descriptor_t | service, | ||
screenshotr_client_t * | client | ||
) |
Connects to the screenshotr service on the specified device.
device | The device to connect to. |
service | The service descriptor returned by lockdownd_start_service. |
client | Pointer that will be set to a newly allocated screenshotr_client_t upon successful return. |
screenshotr_error_t screenshotr_take_screenshot | ( | screenshotr_client_t | client, |
char ** | imgdata, | ||
uint64_t * | imgsize | ||
) |
Get a screen shot from the connected device.
client | The connection screenshotr service client. |
imgdata | Pointer that will point to a newly allocated buffer containing TIFF image data upon successful return. It is up to the caller to free the memory. |
imgsize | Pointer to a uint64_t that will be set to the size of the buffer imgdata points to upon successful return. |