diff options
Diffstat (limited to '')
-rw-r--r-- | scripts/kconfig/libcurses/pdcwin.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/scripts/kconfig/libcurses/pdcwin.h b/scripts/kconfig/libcurses/pdcwin.h new file mode 100644 index 000000000..cee76931b --- /dev/null +++ b/scripts/kconfig/libcurses/pdcwin.h | |||
@@ -0,0 +1,27 @@ | |||
1 | /* PDCurses */ | ||
2 | |||
3 | #if defined(PDC_WIDE) && !defined(UNICODE) | ||
4 | # define UNICODE | ||
5 | #endif | ||
6 | |||
7 | #define WIN32_LEAN_AND_MEAN | ||
8 | #include <windows.h> | ||
9 | #undef MOUSE_MOVED | ||
10 | #include "curspriv.h" | ||
11 | |||
12 | #if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE) | ||
13 | # define _CRT_SECURE_NO_DEPRECATE 1 /* kill nonsense warnings */ | ||
14 | #endif | ||
15 | |||
16 | typedef struct {short r, g, b; bool mapped;} PDCCOLOR; | ||
17 | |||
18 | extern PDCCOLOR pdc_color[PDC_MAXCOL]; | ||
19 | |||
20 | extern HANDLE pdc_con_out, pdc_con_in; | ||
21 | extern DWORD pdc_quick_edit; | ||
22 | extern DWORD pdc_last_blink; | ||
23 | extern short pdc_curstoreal[16], pdc_curstoansi[16]; | ||
24 | extern short pdc_oldf, pdc_oldb, pdc_oldu; | ||
25 | extern bool pdc_conemu, pdc_wt, pdc_ansi; | ||
26 | |||
27 | extern void PDC_blink_text(void); | ||