Fix include problem
[kugel-rb.git] / firmware / include / font_cache.h
blobe625abb79e4400f770e7d02cecec1ba14354abc3
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
9 * Copyright (C) 2003 Tat Tang
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version 2
14 * of the License, or (at your option) any later version.
16 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
17 * KIND, either express or implied.
19 ****************************************************************************/
20 #ifndef _FONT_CACHE_H_
21 #define _FONT_CACHE_H_
22 #include "lru.h"
24 /*******************************************************************************
26 ******************************************************************************/
27 struct font_cache
29 struct lru _lru;
30 int _size;
31 int _capacity;
32 short *_index; /* index of lru handles in char_code order */
35 struct font_cache_entry
37 unsigned short _char_code;
38 unsigned char width;
39 unsigned char bitmap[1]; /* place holder */
42 /* void (*f) (void*, struct font_cache_entry*); */
43 /* Create an auto sized font cache from buf */
44 void font_cache_create(
45 struct font_cache* fcache, void* buf, int buf_size, int bitmap_bytes_size);
46 /* Get font cache entry */
47 struct font_cache_entry* font_cache_get(
48 struct font_cache* fcache,
49 unsigned short char_code,
50 void (*callback) (struct font_cache_entry* p, void *callback_data),
51 void *callback_data);
53 #endif