mirror of
https://github.com/joncampbell123/dosbox-x.git
synced 2025-10-14 02:17:36 +08:00
24 lines
584 B
C
24 lines
584 B
C
/* Public Domain Curses */
|
|
|
|
#if defined(PDC_WIDE) && !defined(UNICODE)
|
|
# define UNICODE
|
|
#endif
|
|
|
|
#define WIN32_LEAN_AND_MEAN
|
|
#include <windows.h>
|
|
#undef MOUSE_MOVED
|
|
#include <curspriv.h>
|
|
|
|
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
|
|
# define _CRT_SECURE_NO_DEPRECATE 1 /* kill nonsense warnings */
|
|
#endif
|
|
|
|
extern HANDLE pdc_con_out, pdc_con_in;
|
|
extern DWORD pdc_quick_edit;
|
|
extern DWORD pdc_last_blink;
|
|
extern short pdc_curstoreal[16], pdc_curstoansi[16];
|
|
extern short pdc_oldf, pdc_oldb, pdc_oldu;
|
|
extern bool pdc_conemu, pdc_ansi;
|
|
|
|
extern void PDC_blink_text(void);
|