summaryrefslogtreecommitdiff
path: root/uisimulator/win32/lcd-win32.h
diff options
context:
space:
mode:
Diffstat (limited to 'uisimulator/win32/lcd-win32.h')
-rw-r--r--uisimulator/win32/lcd-win32.h47
1 files changed, 0 insertions, 47 deletions
diff --git a/uisimulator/win32/lcd-win32.h b/uisimulator/win32/lcd-win32.h
deleted file mode 100644
index b3533ad0cb..0000000000
--- a/uisimulator/win32/lcd-win32.h
+++ /dev/null
@@ -1,47 +0,0 @@
1/***************************************************************************
2 * __________ __ ___.
3 * Open \______ \ ____ ____ | | _\_ |__ _______ ___
4 * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
5 * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
6 * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
7 * \/ \/ \/ \/ \/
8 * $Id$
9 *
10 * Copyright (C) 2002 by Felix Arends
11 *
12 * All files in this archive are subject to the GNU General Public License.
13 * See the file COPYING in the source tree root for full license agreement.
14 *
15 * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
16 * KIND, either express or implied.
17 *
18 ****************************************************************************/
19
20#ifndef __LCDWIN32_H__
21#define __LCDWIN32_H__
22
23#include "uisw32.h"
24#include "lcd.h"
25
26// BITMAPINFO256
27typedef struct
28{
29 BITMAPINFOHEADER bmiHeader;
30 RGBQUAD bmiColors[256];
31} BITMAPINFO256;
32
33#if LCD_DEPTH <= 8
34extern unsigned char bitmap[LCD_HEIGHT][LCD_WIDTH]; // the ui display
35#elif LCD_DEPTH <= 16
36extern unsigned short bitmap[LCD_HEIGHT][LCD_WIDTH]; // the ui display
37#endif
38extern BITMAPINFO256 bmi; // bitmap information
39
40#ifdef HAVE_REMOTE_LCD
41extern unsigned char remote_bitmap[LCD_REMOTE_HEIGHT][LCD_REMOTE_WIDTH];
42extern BITMAPINFO256 remote_bmi; // bitmap information
43#endif
44
45void simlcdinit(void);
46
47#endif // #ifndef __LCDWIN32_H__