Kjell Ericson | f179453 | 2002-10-21 20:28:09 +0000 | [diff] [blame] | 1 | /*************************************************************************** |
| 2 | * __________ __ ___. |
| 3 | * Open \______ \ ____ ____ | | _\_ |__ _______ ___ |
| 4 | * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ / |
| 5 | * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < < |
| 6 | * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \ |
| 7 | * \/ \/ \/ \/ \/ |
| 8 | * $Id$ |
| 9 | * |
Daniel Stenberg | 2acc0ac | 2008-06-28 18:10:04 +0000 | [diff] [blame] | 10 | * This program is free software; you can redistribute it and/or |
| 11 | * modify it under the terms of the GNU General Public License |
| 12 | * as published by the Free Software Foundation; either version 2 |
| 13 | * of the License, or (at your option) any later version. |
Kjell Ericson | f179453 | 2002-10-21 20:28:09 +0000 | [diff] [blame] | 14 | * |
| 15 | * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY |
| 16 | * KIND, either express or implied. |
| 17 | * |
| 18 | ****************************************************************************/ |
Kjell Ericson | 3262207 | 2002-10-28 20:00:19 +0000 | [diff] [blame] | 19 | |
Thomas Martitz | 0f274ac | 2010-12-02 21:31:38 +0000 | [diff] [blame] | 20 | #ifndef __FONT_PLAYER_H__ |
| 21 | #define __FONT_PLAYER_H__ |
| 22 | |
Jens Arnold | 54ea2e4 | 2007-03-31 09:58:49 +0000 | [diff] [blame] | 23 | extern unsigned char (*font_player)[256][7]; |
Kjell Ericson | 3262207 | 2002-10-28 20:00:19 +0000 | [diff] [blame] | 24 | |
Thomas Martitz | 0f274ac | 2010-12-02 21:31:38 +0000 | [diff] [blame] | 25 | void font_init(void); |
Kjell Ericson | f179453 | 2002-10-21 20:28:09 +0000 | [diff] [blame] | 26 | |
Thomas Martitz | 0f274ac | 2010-12-02 21:31:38 +0000 | [diff] [blame] | 27 | #endif /* __FONT_PLAYER_H__ */ |