OSDN Git Service

Initial Import
[nethackexpress/trunk.git] / sys / wince / mhcolor.h
1 /* Copyright (C) 2001 by Alex Kompel <shurikk@pacbell.net> */
2 /* NetHack may be freely redistributed.  See license for details. */
3
4 /* color management functions */
5
6 #ifndef MSWINColor_h
7 #define MSWINColor_h
8
9 #define MSWIN_COLOR_BG 0
10 #define MSWIN_COLOR_FG 1
11 #define SYSCLR_TO_BRUSH(x) ((HBRUSH)((x) + 1))
12
13 extern void mswin_init_color_table();
14 extern HBRUSH mswin_get_brush(int win_type, int color_index);
15 extern COLORREF mswin_get_color(int win_type, int color_index);
16
17 #endif /* MSWINColor_h */