summaryrefslogtreecommitdiff
path: root/draw.h
diff options
context:
space:
mode:
authorlouie <lshprung@yahoo.com>2020-12-28 12:47:47 -0800
committerlouie <lshprung@yahoo.com>2020-12-28 12:47:47 -0800
commitd7fa91b54c7dcce8dedbe32f37cf849f530f8864 (patch)
treec22df16697dc92aaed450412e11697eb13a62858 /draw.h
parentcf54938e343a9fced866fd2f2602eb807b7b8a93 (diff)
Cleaned up ifdefs
Diffstat (limited to 'draw.h')
-rw-r--r--draw.h15
1 files changed, 15 insertions, 0 deletions
diff --git a/draw.h b/draw.h
new file mode 100644
index 0000000..275b8bb
--- /dev/null
+++ b/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