aboutsummaryrefslogtreecommitdiff
path: root/src/indic8.h
blob: 5b29740462d654d9d3ba4780a22c5e94613de160 (plain)
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
#define NET_TX_CHR   0x5c    /* COLOR1 up-arrow */
#define NET_RX_CHR   0x5d    /* COLOR1 down-arrow */
#define NET_ERR_CHR  0xe1    /* COLOR3 exclamation mark */
#define NET_IDLE_CHR 0       /* null (renders as a space) */

#define J_CHR        0x4a    /* COLOR1 J */
#define P_CHR        0x50    /* COLOR1 P */
#define Q_CHR        0x51    /* COLOR1 Q */
#define M_CHR        0x4d    /* COLOR1 M */
#define CHAN_CHR     0x63    /* COLOR1 # */

void ind_act(char c);

void ind_net_rx(void);
void ind_net_tx(void);
void ind_net_down(void);
void ind_net_idle(void);

#define ind_act_pm() ind_act(M_CHR)
#define ind_act_chantext() ind_act(CHAN_CHR)
#define ind_act_join() ind_act(J_CHR)
#define ind_act_part() ind_act(P_CHR)
#define ind_act_quit() ind_act(Q_CHR)

void ind_check_timer(void);