aboutsummaryrefslogtreecommitdiff
path: root/wind.c
blob: 138d83781e4095e5e6f242bc5b54ff6fab063964 (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
/*
 * Ache - 2017-08-14 - GPLv3
 */

#include "wind.h"

/* Managed windows */

extern int w_menuContact,h_menuContact;

static short my_fg = COLOR_WHITE;
static short my_bg = COLOR_BLACK;
//extern char status[10];
//extern WINDOW *cmd_win;
//extern WINDOW *sep_win;

void resize() {
    h_menuContact = LINES-2;
    w_menuContact =  COLS/5-1;
    showContactListW();
    move(1,COLS/2);
}