1 /***************************************************************************
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
10 * Copyright (C) 2006-2007 Dave Chapman
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.
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
18 ****************************************************************************/
28 #define loff_t int64_t
33 /* Only Linux seems to need lseek64 and loff_t */
34 #if !defined(linux) && !defined (__linux)
41 struct sansa_partinfo_t
{
42 unsigned long start
; /* first sector (LBA) */
43 unsigned long size
; /* number of sectors */
60 struct sansa_partinfo_t pinfo
[4];
62 char* targetname
; /* "e200" or "c200" */
63 loff_t start
; /* Offset in bytes of firmware partition from start of disk */
66 void print_error(char* msg
);
67 int sansa_open(struct sansa_t
* sansa
, int silent
);
68 int sansa_reopen_rw(struct sansa_t
* sansa
);
69 int sansa_close(struct sansa_t
* sansa
);
70 int sansa_seek(struct sansa_t
* sansa
, loff_t pos
);
71 int sansa_read(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
);
72 int sansa_write(struct sansa_t
* sansa
, unsigned char* buf
, int nbytes
);
73 int sansa_alloc_buffer(unsigned char** sectorbuf
, int bufsize
);