forked from Bill-Gray/PDCursesMod
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpdcvt.h
More file actions
25 lines (20 loc) · 638 Bytes
/
pdcvt.h
File metadata and controls
25 lines (20 loc) · 638 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
/* If the following is TRUE, only a limited subset of control codes
will actually work. Happens in older Windows, DOS, Linux console. */
extern int PDC_is_ansi;
#if defined( PDC_FORCE_UTF8) && !defined( PDC_WIDE)
#define PDC_WIDE
#endif
#ifdef PDC_WIDE
#if !defined( UNICODE)
# define UNICODE
#endif
#if !defined( _UNICODE)
# define _UNICODE
#endif
#endif
#if defined(_MSC_VER) && !defined(_CRT_SECURE_NO_DEPRECATE)
# define _CRT_SECURE_NO_DEPRECATE 1 /* kill nonsense warnings */
#endif
#define CSI "\x1b["
#define OSC "\x1b]"
void PDC_puts_to_stdout( const char *buff); /* pdcdisp.c */