2 /** \file color-slang.h
3 * \brief Header: S-Lang-specific color setup
6 #ifndef MC__COLOR_SLANG_H
7 #define MC__COLOR_SLANG_H
9 #include "tty-slang.h" /* S-Lang headers */
11 /*** typedefs(not structures) and defined constants **********************************************/
13 /* When using Slang with color, we have all the indexes free but
14 * those defined here (A_BOLD, A_UNDERLINE, A_REVERSE, A_BLINK)
18 #define A_BOLD SLTT_BOLD_MASK
21 #define A_UNDERLINE SLTT_ULINE_MASK
22 #endif /* A_UNDERLINE */
24 #define A_REVERSE SLTT_REV_MASK
25 #endif /* A_REVERSE */
27 #define A_BLINK SLTT_BLINK_MASK
30 /*** enums ***************************************************************************************/
44 /*** structures declarations (and typedefs of structures)*****************************************/
46 /*** global variables defined in .c file *********************************************************/
48 /*** declarations of public functions ************************************************************/
50 /*** inline functions ****************************************************************************/
51 #endif /* MC_COLOR_SLANG_H */