summaryrefslogtreecommitdiffstats
path: root/include/libimobiledevice/ostrace.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/libimobiledevice/ostrace.h')
-rw-r--r--include/libimobiledevice/ostrace.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libimobiledevice/ostrace.h b/include/libimobiledevice/ostrace.h
index fb5a88f..f083ba7 100644
--- a/include/libimobiledevice/ostrace.h
+++ b/include/libimobiledevice/ostrace.h
@@ -86,10 +86,10 @@ struct ostrace_packet_header_t {
86#pragma pack(pop) 86#pragma pack(pop)
87 87
88/** Receives unparsed ostrace data from the ostrace service */ 88/** Receives unparsed ostrace data from the ostrace service */
89typedef void (*ostrace_activity_cb_t)(const unsigned char* buf, unsigned int len, void *user_data); 89typedef void (*ostrace_activity_cb_t)(const void* buf, size_t len, void *user_data);
90 90
91/** Receives archive data from the ostrace service */ 91/** Receives archive data from the ostrace service */
92typedef int (*ostrace_archive_write_cb_t)(const unsigned char* buf, unsigned int len, void *user_data); 92typedef int (*ostrace_archive_write_cb_t)(const void* buf, size_t len, void *user_data);
93 93
94/* Interface */ 94/* Interface */
95 95