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
dd54db0b
Commit
dd54db0b
authored
Aug 13, 2008
by
Jonathan Beck
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
predeclare internal structs so we can have strong type checking
parent
9236fee8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
5 deletions
+13
-5
libiphone.h
include/libiphone/libiphone.h
+13
-5
No files found.
include/libiphone/libiphone.h
View file @
dd54db0b
...
...
@@ -28,12 +28,20 @@ extern "C" {
#include <sys/types.h>
struct
iph_device_int
;
typedef
iph_device_int
*
iph_device_t
;
typedef
void
*
iph_device_t
;
typedef
void
*
iph_lckd_client_t
;
typedef
void
*
iph_umux_client_t
;
typedef
void
*
iph_afc_client_t
;
typedef
void
*
iph_afc_file_t
;
struct
iph_lckd_client_int
;
typedef
iph_lckd_client_int
*
iph_lckd_client_t
;
struct
iph_umux_client_int
;
typedef
iph_umux_client_int
*
iph_umux_client_t
;
struct
iph_afc_client_int
;
typedef
iph_afc_client_int
*
iph_afc_client_t
;
struct
iph_afc_file_int
;
typedef
iph_afc_file_int
*
iph_afc_file_t
;
//device related functions
int
iph_get_device
(
iph_device_t
*
device
);
...
...
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