diff options
author | Louie S <louie@example.com> | 2022-11-06 16:28:17 -0800 |
---|---|---|
committer | Louie S <louie@example.com> | 2022-11-06 16:28:17 -0800 |
commit | 2c29b6a5145a4c44cbef03197db64cd2d7decd15 (patch) | |
tree | db4129c7efad3b79ee1b21c5ed4ef634044de5eb /src/include/draw.h | |
parent | 77c6ef13a0599fdb9966a3a7dc967e204b77c7d5 (diff) |
Basic functionality for using autotools over basic Makefile
Diffstat (limited to 'src/include/draw.h')
-rw-r--r-- | src/include/draw.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/include/draw.h b/src/include/draw.h new file mode 100644 index 0000000..0a6baba --- /dev/null +++ b/src/include/draw.h @@ -0,0 +1,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 |