|
Line
Link Here
|
| 0 |
-- src/slang.h |
0 |
++ src/slang.h |
|
Lines 1276-1282
Link Here
|
| 1276 |
extern unsigned long SLtt_Num_Chars_Output; |
1276 |
extern unsigned long SLtt_Num_Chars_Output; |
| 1277 |
extern int SLtt_Baud_Rate; |
1277 |
extern int SLtt_Baud_Rate; |
| 1278 |
|
1278 |
|
|
|
1279 |
#ifdef _LP64 |
| 1279 |
typedef unsigned long SLtt_Char_Type; |
1280 |
typedef unsigned long SLtt_Char_Type; |
|
|
1281 |
#else |
| 1282 |
typedef unsigned long SLtt_Char_Type; |
| 1283 |
#endif |
| 1280 |
|
1284 |
|
| 1281 |
#define SLTT_BOLD_MASK 0x01000000UL |
1285 |
#define SLTT_BOLD_MASK 0x01000000UL |
| 1282 |
#define SLTT_BLINK_MASK 0x02000000UL |
1286 |
#define SLTT_BLINK_MASK 0x02000000UL |
|
Lines 1320-1326
Link Here
|
| 1320 |
|
1324 |
|
| 1321 |
#ifdef UTF8 |
1325 |
#ifdef UTF8 |
| 1322 |
typedef int SLsmg_Char_Type; |
1326 |
typedef int SLsmg_Char_Type; |
| 1323 |
extern SLtt_Char_Type SLcurses_Acs_Map [128]; |
1327 |
extern SLtt_Char_Type SLcurses_Acs_Map []; |
| 1324 |
#define acs_map SLcurses_Acs_Map |
1328 |
#define acs_map SLcurses_Acs_Map |
| 1325 |
#define SLSMG_EXTRACT_CHAR(x) ((x) & 0xFFFFFF) |
1329 |
#define SLSMG_EXTRACT_CHAR(x) ((x) & 0xFFFFFF) |
| 1326 |
#define SLSMG_EXTRACT_COLOR(x) (((x)>>24)&0xFF) |
1330 |
#define SLSMG_EXTRACT_COLOR(x) (((x)>>24)&0xFF) |