blob: 8496766b7616801b942f80044a33890719ffd81b [file] [log] [blame]
Dave Chapman4b7e1e02006-12-13 09:02:18 +00001/***************************************************************************
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
30void print_error(char* msg);
31int ipod_open(HANDLE* dh, char* diskname, int* sector_size);
32int ipod_reopen_rw(HANDLE* dh, char* diskname);
33int ipod_close(HANDLE dh);
34int ipod_seek(HANDLE dh, unsigned long pos);
35int ipod_read(HANDLE dh, unsigned char* buf, int nbytes);
36int ipod_write(HANDLE dh, unsigned char* buf, int nbytes);
37int ipod_alloc_buffer(unsigned char** sectorbuf, int bufsize);
38
39#endif