diff options
author | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 16:14:26 -0400 |
---|---|---|
committer | Louie Shprung <lshprung@tutanota.com> | 2024-08-30 16:14:26 -0400 |
commit | 615c64bcd69eea3660f0a35396255c2eb45fa283 (patch) | |
tree | 8e4d8da22240f1ab8da4ff097f74177fcbf24f50 /src/include/draw.h | |
parent | 9cd631a391568c3e75d6f9ee65707dea0bea6d9a (diff) | |
parent | a3d9eb21789bf3587f176e6d155d610b8bc69dab (diff) |
Merge branch 'testing'
Diffstat (limited to 'src/include/draw.h')
-rw-r--r-- | src/include/draw.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/include/draw.h b/src/include/draw.h index 387ced3..022abe5 100644 --- a/src/include/draw.h +++ b/src/include/draw.h @@ -5,11 +5,14 @@ #define BUF_LEN 1024 +// currently selected group extern int g_hover; +// array of currently selected entries for each group extern int *e_hover; +// array of groups (as loaded from the config) extern struct group **g; -extern struct entry **e; +// returns the command to run for the current entry char *get_launch(); //functions that differ between os |