Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
L
libplist
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
pwn
libplist
Commits
32345982
Commit
32345982
authored
Aug 10, 2008
by
Christophe Fergeau
Committed by
Matt Colyer
Aug 11, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add missing functions to afc.h
Signed-off-by:
Matt Colyer
<
matt@colyer.name
>
parent
7d4b4ede
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
AFC.h
src/AFC.h
+4
-0
No files found.
src/AFC.h
View file @
32345982
...
...
@@ -87,11 +87,15 @@ enum {
AFClient
*
afc_connect
(
iPhone
*
phone
,
int
s_port
,
int
d_port
);
void
afc_disconnect
(
AFClient
*
client
);
char
**
afc_get_devinfo
(
AFClient
*
client
);
char
**
afc_get_dir_list
(
AFClient
*
client
,
const
char
*
dir
);
AFCFile
*
afc_get_file_info
(
AFClient
*
client
,
const
char
*
path
);
AFCFile
*
afc_open_file
(
AFClient
*
client
,
const
char
*
filename
,
uint32
file_mode
);
void
afc_close_file
(
AFClient
*
client
,
AFCFile
*
file
);
int
afc_read_file
(
AFClient
*
client
,
AFCFile
*
file
,
char
*
data
,
int
length
);
int
afc_write_file
(
AFClient
*
client
,
AFCFile
*
file
,
const
char
*
data
,
int
length
);
int
afc_seek_file
(
AFClient
*
client
,
AFCFile
*
file
,
int
seekpos
);
int
afc_truncate_file
(
AFClient
*
client
,
AFCFile
*
file
,
uint32
newsize
);
int
afc_delete_file
(
AFClient
*
client
,
const
char
*
path
);
int
afc_rename_file
(
AFClient
*
client
,
const
char
*
from
,
const
char
*
to
);
int
afc_mkdir
(
AFClient
*
client
,
const
char
*
dir
);
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment