D'oh, revert accidental commit of a renaming experiment which I thought I had reverte...
[Rockbox.git] / uisimulator / common / lcd-common.c
blob00a456507d18c36f79aaca4359130e055390145b
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 * All files in this archive are subject to the GNU General Public License.
16 * See the file COPYING in the source tree root for full license agreement.
18 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
19 * KIND, either express or implied.
21 ****************************************************************************/
23 #include "lcd-common.h"
24 #include "lcd.h"
25 #include "lcd-sdl.h"
27 void lcd_set_flip(bool yesno)
29 (void)yesno;
32 void lcd_set_invert_display(bool invert)
34 (void)invert;
37 int lcd_default_contrast(void)
39 return 28;
42 void lcd_sleep(void)
46 #ifdef HAVE_REMOTE_LCD
47 void lcd_remote_set_contrast(int val)
49 (void)val;
51 void lcd_remote_backlight_on(int val)
53 (void)val;
55 void lcd_remote_backlight_off(int val)
57 (void)val;
60 void lcd_remote_set_flip(bool yesno)
62 (void)yesno;
65 void lcd_remote_set_invert_display(bool invert)
67 (void)invert;
69 #endif