Dave Chapman | 4b7e1e0 | 2006-12-13 09:02:18 +0000 | [diff] [blame^] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
| 10 | * Copyright (C) 2006 Dave Chapman |
| 11 | * |
| 12 | * All files in this archive are subject to the GNU General Public License. |
| 13 | * See the file COPYING in the source tree root for full license agreement. |
| 14 | * |
| 15 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 16 | * KIND, either express or implied. |
| 17 | * |
| 18 | ****************************************************************************/ |
| 19 | |
| 20 | #ifndef __IPODIO_H |
| 21 | #define __IPODIO_H |
| 22 | |
| 23 | #ifdef __WIN32__ |
| 24 | #include <windows.h> |
| 25 | #else |
| 26 | #define HANDLE int |
| 27 | #define O_BINARY 0 |
| 28 | #endif |
| 29 | |
| 30 | void print_error(char* msg); |
| 31 | int ipod_open(HANDLE* dh, char* diskname, int* sector_size); |
| 32 | int ipod_reopen_rw(HANDLE* dh, char* diskname); |
| 33 | int ipod_close(HANDLE dh); |
| 34 | int ipod_seek(HANDLE dh, unsigned long pos); |
| 35 | int ipod_read(HANDLE dh, unsigned char* buf, int nbytes); |
| 36 | int ipod_write(HANDLE dh, unsigned char* buf, int nbytes); |
| 37 | int ipod_alloc_buffer(unsigned char** sectorbuf, int bufsize); |
| 38 | |
| 39 | #endif |