diff options
author | Joshua Hill | 2010-06-20 22:02:18 -0400 |
---|---|---|
committer | Joshua Hill | 2010-06-21 03:59:31 -0400 |
commit | 24afafe06f902bfd9f5652beb8797f24033c68bc (patch) | |
tree | c998387441a8e044a07cb3a5ae1282543ddaebad /src/img3.h | |
parent | 2a2934ca1568dffe69da9a20420c7c0c71376bce (diff) | |
download | idevicerestore-24afafe06f902bfd9f5652beb8797f24033c68bc.tar.gz idevicerestore-24afafe06f902bfd9f5652beb8797f24033c68bc.tar.bz2 |
Archived for historical reasons
Diffstat (limited to 'src/img3.h')
-rw-r--r-- | src/img3.h | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -22,6 +22,10 @@ #ifndef IDEVICERESTORE_IMG3_H #define IDEVICERESTORE_IMG3_H +#ifdef __cplusplus +extern "C" { +#endif + typedef enum { kNorContainer = 0x696D6733, // img3 kImg3Container = 0x496D6733, // Img3 @@ -86,4 +90,9 @@ img3_file* img3_parse_file(char* data, int size); int img3_get_data(img3_file* image, char** pdata, int* psize); int img3_replace_signature(img3_file* image, char* signature); + +#ifdef __cplusplus +}s +#endif + #endif |