Red build fix: Proper handling of ENABLEDPLUGINS and SOFTWARECODECS.
[kugel-rb.git] / uisimulator / common / lcd-common.c
blob52857455f9cbe37f1d0d472a42f135d48e6b8fc1
1 /***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
10 * Copyright (C) 2002 by Robert E. Hak <rhak@ramapo.edu>
12 * Windows Copyright (C) 2002 by Felix Arends
13 * X11 Copyright (C) 2002 by Daniel Stenberg <daniel@haxx.se>
15 * This program is free software; you can redistribute it and/or
16 * modify it under the terms of the GNU General Public License
17 * as published by the Free Software Foundation; either version 2
18 * of the License, or (at your option) any later version.
20 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
21 * KIND, either express or implied.
23 ****************************************************************************/
25 #include "lcd.h"
26 #include "lcd-sdl.h"
28 void lcd_set_flip(bool yesno)
30 (void)yesno;
33 void lcd_set_invert_display(bool invert)
35 (void)invert;
38 int lcd_default_contrast(void)
40 return 28;
43 void lcd_sleep(void)
47 #ifdef HAVE_REMOTE_LCD
48 void lcd_remote_set_contrast(int val)
50 (void)val;
52 void lcd_remote_backlight_on(int val)
54 (void)val;
56 void lcd_remote_backlight_off(int val)
58 (void)val;
61 void lcd_remote_set_flip(bool yesno)
63 (void)yesno;
66 void lcd_remote_set_invert_display(bool invert)
68 (void)invert;
70 #endif