From b8209a2349ffb2153e0c17f43412f2c9906aa8d0 Mon Sep 17 00:00:00 2001 From: louie Date: Mon, 28 Dec 2020 15:34:29 -0800 Subject: Moved headers to separate directory --- include/draw.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 include/draw.h (limited to 'include/draw.h') diff --git a/include/draw.h b/include/draw.h new file mode 100644 index 0000000..275b8bb --- /dev/null +++ b/include/draw.h @@ -0,0 +1,15 @@ +#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(); + +#endif -- cgit