diff options
| author | 2009-04-13 08:48:00 -0700 | |
|---|---|---|
| committer | 2009-04-13 08:48:00 -0700 | |
| commit | 6671ca3d6de6a1fd27853e3b1ce7a81d568703f0 (patch) | |
| tree | 735c5ace7ed57cd4e19f2fde423b22e6104eaa98 /src/AFC.h | |
| parent | bd31783d7fde0b5bd101f4a3f97ca1aca2aa6fab (diff) | |
| parent | 288929f45cb2641690879b52ec514097995cd41a (diff) | |
| download | libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.gz libimobiledevice-6671ca3d6de6a1fd27853e3b1ce7a81d568703f0.tar.bz2 | |
Merged in Jonathan's libplist libiphone. [#2 state:resolved]
Diffstat (limited to 'src/AFC.h')
| -rw-r--r-- | src/AFC.h | 10 | 
1 files changed, 5 insertions, 5 deletions
| @@ -29,12 +29,12 @@  #include <glib.h>  typedef struct { -	uint32 header1, header2; -	uint32 entire_length, unknown1, this_length, unknown2, packet_num, unknown3, operation, unknown4; +	uint32_t header1, header2; +	uint32_t entire_length, unknown1, this_length, unknown2, packet_num, unknown3, operation, unknown4;  } AFCPacket;  typedef struct { -	uint32 filehandle, unknown1, size, unknown2; +	uint32_t filehandle, unknown1, size, unknown2;  } AFCFilePacket;  typedef struct __AFCToken { @@ -51,7 +51,7 @@ struct iphone_afc_client_int {  };  struct iphone_afc_file_int { -	uint32 filehandle, blocks, size, type; +	uint32_t filehandle, blocks, size, type;  }; @@ -87,4 +87,4 @@ enum {  	AFC_MAKE_LINK = 0x0000001C	// MakeLink  }; -uint32 iphone_afc_get_file_handle(iphone_afc_file_t file); +uint32_t iphone_afc_get_file_handle(iphone_afc_file_t file); | 
