summaryrefslogtreecommitdiffstats
path: root/include/libiphone
diff options
context:
space:
mode:
Diffstat (limited to 'include/libiphone')
-rw-r--r--include/libiphone/libiphone.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/include/libiphone/libiphone.h b/include/libiphone/libiphone.h
index bd8d9fb..fc24d35 100644
--- a/include/libiphone/libiphone.h
+++ b/include/libiphone/libiphone.h
@@ -72,9 +72,6 @@ typedef struct iphone_lckd_client_int *iphone_lckd_client_t;
72struct iphone_afc_client_int; 72struct iphone_afc_client_int;
73typedef struct iphone_afc_client_int *iphone_afc_client_t; 73typedef struct iphone_afc_client_int *iphone_afc_client_t;
74 74
75struct iphone_afc_file_int;
76typedef struct iphone_afc_file_int *iphone_afc_file_t;
77
78struct iphone_msync_client_int; 75struct iphone_msync_client_int;
79typedef struct iphone_msync_client_int *iphone_msync_client_t; 76typedef struct iphone_msync_client_int *iphone_msync_client_t;
80 77
@@ -118,14 +115,14 @@ int iphone_afc_get_errno ( iphone_afc_client_t client );
118iphone_error_t iphone_afc_get_devinfo ( iphone_afc_client_t client, char ***infos ); 115iphone_error_t iphone_afc_get_devinfo ( iphone_afc_client_t client, char ***infos );
119iphone_error_t iphone_afc_get_dir_list ( iphone_afc_client_t client, const char *dir, char ***list); 116iphone_error_t iphone_afc_get_dir_list ( iphone_afc_client_t client, const char *dir, char ***list);
120 117
121iphone_error_t iphone_afc_get_file_attr ( iphone_afc_client_t client, const char *filename, struct stat *stbuf ); 118iphone_error_t iphone_afc_get_file_info ( iphone_afc_client_t client, const char *filename, char ***infolist );
122iphone_error_t iphone_afc_open_file ( iphone_afc_client_t client, const char *filename, iphone_afc_file_mode_t file_mode, iphone_afc_file_t *file ); 119iphone_error_t iphone_afc_open_file ( iphone_afc_client_t client, const char *filename, iphone_afc_file_mode_t file_mode, uint64_t *handle );
123iphone_error_t iphone_afc_close_file ( iphone_afc_client_t client, iphone_afc_file_t file); 120iphone_error_t iphone_afc_close_file ( iphone_afc_client_t client, uint64_t handle);
124iphone_error_t iphone_afc_lock_file ( iphone_afc_client_t client, iphone_afc_file_t file, int operation); 121iphone_error_t iphone_afc_lock_file ( iphone_afc_client_t client, uint64_t handle, int operation);
125iphone_error_t iphone_afc_read_file ( iphone_afc_client_t client, iphone_afc_file_t file, char *data, int length, uint32_t *bytes); 122iphone_error_t iphone_afc_read_file ( iphone_afc_client_t client, uint64_t handle, char *data, int length, uint32_t *bytes);
126iphone_error_t iphone_afc_write_file ( iphone_afc_client_t client, iphone_afc_file_t file, const char *data, int length, uint32_t *bytes); 123iphone_error_t iphone_afc_write_file ( iphone_afc_client_t client, uint64_t handle, const char *data, int length, uint32_t *bytes);
127iphone_error_t iphone_afc_seek_file ( iphone_afc_client_t client, iphone_afc_file_t file, int seekpos); 124iphone_error_t iphone_afc_seek_file ( iphone_afc_client_t client, uint64_t handle, int64_t offset, int whence);
128iphone_error_t iphone_afc_truncate_file ( iphone_afc_client_t client, iphone_afc_file_t file, uint32_t newsize); 125iphone_error_t iphone_afc_truncate_file ( iphone_afc_client_t client, uint64_t handle, uint64_t newsize);
129iphone_error_t iphone_afc_delete_file ( iphone_afc_client_t client, const char *path); 126iphone_error_t iphone_afc_delete_file ( iphone_afc_client_t client, const char *path);
130iphone_error_t iphone_afc_rename_file ( iphone_afc_client_t client, const char *from, const char *to); 127iphone_error_t iphone_afc_rename_file ( iphone_afc_client_t client, const char *from, const char *to);
131iphone_error_t iphone_afc_mkdir ( iphone_afc_client_t client, const char *dir); 128iphone_error_t iphone_afc_mkdir ( iphone_afc_client_t client, const char *dir);