2009-01-04 21:22:05 +00:00
|
|
|
/***************************************************************************
|
|
|
|
* __________ __ ___.
|
|
|
|
* Open \______ \ ____ ____ | | _\_ |__ _______ ___
|
|
|
|
* Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
|
|
|
|
* Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
|
|
|
|
* Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
|
|
|
|
* \/ \/ \/ \/ \/
|
|
|
|
* $Id$
|
|
|
|
*
|
2009-01-08 02:49:23 +00:00
|
|
|
* Copyright (C) 2009 by Andrew Mahone
|
|
|
|
*
|
|
|
|
* This header redefines some core functions as calls via the plugin_api, to
|
|
|
|
* allow easy compilation of core source files in the pluginlib with different
|
|
|
|
* features from the version built for the core, or when a core object file is
|
|
|
|
* not built for a particular target.
|
2009-01-04 21:22:05 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
* KIND, either express or implied.
|
|
|
|
*
|
|
|
|
****************************************************************************/
|
|
|
|
|
2009-01-08 02:49:23 +00:00
|
|
|
#ifndef _LIB_WRAPPERS_H_
|
|
|
|
#define _LIB_WRAPPERS_H_
|
|
|
|
|
2009-01-24 04:09:29 +00:00
|
|
|
#define DEBUG_H
|
|
|
|
#define __SPRINTF_H__
|
|
|
|
|
2009-01-08 02:49:23 +00:00
|
|
|
#define open rb->open
|
|
|
|
#define close rb->close
|
|
|
|
#define read rb->read
|
|
|
|
#define lseek rb->lseek
|
|
|
|
#define memset rb->memset
|
|
|
|
#ifdef HAVE_ADJUSTABLE_CPU_FREQ
|
2009-04-17 16:01:15 +00:00
|
|
|
#ifdef CPU_BOOST_LOGGING
|
|
|
|
#define cpu_boost_ rb->cpu_boost_
|
|
|
|
#else
|
2009-01-08 02:49:23 +00:00
|
|
|
#define cpu_boost rb->cpu_boost
|
|
|
|
#endif
|
2009-04-17 16:01:15 +00:00
|
|
|
#endif
|
2009-01-08 02:49:23 +00:00
|
|
|
#define yield rb->yield
|
2009-01-24 04:09:29 +00:00
|
|
|
#define file_exists rb->file_exists
|
|
|
|
#define snprintf rb->snprintf
|
|
|
|
#define strcat rb->strcat
|
|
|
|
#define strchr rb->strchr
|
|
|
|
#define strcmp rb->strcmp
|
|
|
|
#define strcpy rb->strcpy
|
|
|
|
#define strip_extension rb->strip_extension
|
|
|
|
#define strlen rb->strlen
|
2009-07-14 13:57:45 +00:00
|
|
|
#define strlcpy rb->strlcpy
|
2009-01-24 04:09:29 +00:00
|
|
|
#define strrchr rb->strrchr
|
2009-01-08 02:49:23 +00:00
|
|
|
|
|
|
|
#endif
|
2009-01-04 21:22:05 +00:00
|
|
|
|