1
0
Fork 0
forked from len0rd/rockbox

[4/4] Remove HAVE_LCD_BITMAP, as it's now the only choice.

Note:  I left behind lcd_bitmap in features.txt, because removing it
would require considerable work in the manual and the translations.

Change-Id: Ia8ca7761f610d9332a0d22a7d189775fb15ec88a
This commit is contained in:
Solomon Peachy 2020-07-17 10:31:31 -04:00
parent 8cb555460f
commit 658026e626
240 changed files with 288 additions and 1759 deletions

View file

@ -33,8 +33,6 @@
#define MASK 0xC0 /* 11000000 */
#define COMP 0x80 /* 10x */
#ifdef HAVE_LCD_BITMAP
enum codepages {
ISO_8859_1 = 0, /* Latin1 */
ISO_8859_7, /* Greek */
@ -55,23 +53,6 @@ enum codepages {
INIT_CODEPAGE = ISO_8859_1,
};
#else /* !HAVE_LCD_BITMAP, reduced support */
enum codepages {
ISO_8859_1 = 0, /* Latin1 */
ISO_8859_7, /* Greek */
WIN_1251, /* Cyrillic */
ISO_8859_9, /* Turkish */
ISO_8859_2, /* Latin Extended */
WIN_1250, /* Central European */
WIN_1252, /* Western European */
UTF_8, /* Unicode */
NUM_CODEPAGES,
INIT_CODEPAGE = ISO_8859_1,
};
#endif
/* Encode a UCS value as UTF-8 and return a pointer after this UTF-8 char. */
unsigned char* utf8encode(unsigned long ucs, unsigned char *utf8);
unsigned char* iso_decode(const unsigned char *latin1, unsigned char *utf8, int cp, int count);