|
|
cvs: firmware/export buffer.h,NONE,1.1: msg#00030
|
Subject: |
cvs: firmware/export buffer.h,NONE,1.1 |
Update of /cvsroot/rockbox/firmware/export
In directory sc8-pr-cvs1:/tmp/cvs-serv29220/firmware/export
Added Files:
buffer.h
Log Message:
Configurable dir browser file buffer size. No more 400-file limit. No more
whining.
--- NEW FILE: buffer.h ---
/***************************************************************************
* __________ __ ___.
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
* \/ \/ \/ \/ \/
* $Id: buffer.h,v 1.1 2003/05/09 16:01:21 linusnielsen Exp $
*
* Copyright (C) 2002 by Linus Nielsen Feltzing
*
* All files in this archive are subject to the GNU General Public License.
* See the file COPYING in the source tree root for full license agreement.
*
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
* KIND, either express or implied.
*
****************************************************************************/
#ifndef BUFFER_H
#define BUFFER_H
/* defined in linker script */
extern unsigned char mp3end[];
extern unsigned char *mp3buf;
void buffer_init(void);
void *buffer_alloc(size_t size);
#endif
|
| |