summaryrefslogtreecommitdiff
path: root/src/include/draw.h
blob: 387ced352b710a6c8e888012e950599d1c249acb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#ifndef DRAW_H
#define DRAW_H

//These functions are needed by either unix/draw.c or windows/draw.c and must be supplied via a header file

#define BUF_LEN 1024

extern int g_hover;
extern int *e_hover;
extern struct group **g;
extern struct entry **e;

char *get_launch();

//functions that differ between os
void launch();

#endif