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.h23
1 files changed, 21 insertions, 2 deletions
diff --git a/uisimulator/win32/lcd-win32.h b/uisimulator/win32/lcd-win32.h
index 5049c2d70c..e4b1e3bd8e 100644
--- a/uisimulator/win32/lcd-win32.h
+++ b/uisimulator/win32/lcd-win32.h
@@ -1,3 +1,22 @@
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
1#ifndef __LCDWIN32_H__ 20#ifndef __LCDWIN32_H__
2#define __LCDWIN32_H__ 21#define __LCDWIN32_H__
3 22
@@ -13,14 +32,14 @@ typedef struct
13 32
14#ifdef HAVE_LCD_BITMAP 33#ifdef HAVE_LCD_BITMAP
15 34
16extern unsigned char display[DISP_X][DISP_Y/8]; // the display 35extern unsigned char display[LCD_WIDTH][LCD_HEIGHT/8]; // the display
17#else 36#else
18#define DISP_X 112 37#define DISP_X 112
19#define DISP_Y 64 38#define DISP_Y 64
20#endif 39#endif
21 40
22 41
23extern char bitmap[DISP_Y][DISP_X]; // the ui display 42extern char bitmap[LCD_WIDTH][LCD_HEIGHT]; // the ui display
24extern BITMAPINFO2 bmi; // bitmap information 43extern BITMAPINFO2 bmi; // bitmap information
25 44
26 45