2005-05-23 22:47:42 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
|
|
|
* Copyright (C) 2005 by Daniel Stenberg
|
|
|
|
*
|
|
|
|
* 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 LOGF_H
|
|
|
|
#define LOGF_H
|
2005-05-30 13:00:43 +00:00
|
|
|
#include <config.h>
|
2005-06-22 14:46:38 +00:00
|
|
|
#include <stdbool.h>
|
2007-03-17 09:54:28 +00:00
|
|
|
#include "../include/_ansi.h"
|
2005-05-30 13:00:43 +00:00
|
|
|
|
|
|
|
#ifdef ROCKBOX_HAS_LOGF
|
2005-05-23 22:47:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#ifndef __PCTOOL__
|
2005-05-24 14:27:17 +00:00
|
|
|
#define MAX_LOGF_LINES 1000
|
2005-06-30 15:33:43 +00:00
|
|
|
#define MAX_LOGF_ENTRY 30
|
2005-06-01 13:21:20 +00:00
|
|
|
#define MAX_LOGF_DATASIZE (MAX_LOGF_ENTRY*MAX_LOGF_LINES)
|
2005-05-24 14:27:17 +00:00
|
|
|
|
2005-06-01 13:21:20 +00:00
|
|
|
extern unsigned char logfbuffer[MAX_LOGF_LINES][MAX_LOGF_ENTRY];
|
2005-05-24 14:27:17 +00:00
|
|
|
extern int logfindex;
|
2005-05-23 22:47:42 +00:00
|
|
|
extern bool logfwrap;
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif /* __PCTOOL__ */
|
2005-05-23 22:47:42 +00:00
|
|
|
|
2006-11-10 08:03:33 +00:00
|
|
|
#define logf _logf
|
2007-03-17 09:02:53 +00:00
|
|
|
void _logf(const char *format, ...) ATTRIBUTE_PRINTF(1, 2);
|
2006-11-10 08:03:33 +00:00
|
|
|
|
|
|
|
#else /* !ROCKBOX_HAS_LOGF */
|
2005-05-30 13:00:43 +00:00
|
|
|
/* built without logf() support enabled */
|
|
|
|
#define logf(...)
|
2006-11-10 08:03:33 +00:00
|
|
|
#endif /* !ROCKBOX_HAS_LOGF */
|
2005-05-23 22:47:42 +00:00
|
|
|
|
|
|
|
#endif /* LOGF_H */
|