diff options
author | louie <lshprung@tutanota.com> | 2023-06-19 17:28:39 -0700 |
---|---|---|
committer | louie <lshprung@tutanota.com> | 2023-06-19 17:28:39 -0700 |
commit | 5443773a4ef21ae63ab5f3632909cf253368a508 (patch) | |
tree | a95a16490131cc15bb665926698a4ef12b2deeb2 /src/include | |
parent | a11237da7f7722d37c42b49e86c6ddeb85486d62 (diff) | |
parent | 5683ccf3a01d8d97b08f8ecbf656a3d92f9737ef (diff) |
Merge remote-tracking branch 'origin/testing'
Diffstat (limited to 'src/include')
-rw-r--r-- | src/include/cache.h | 4 | ||||
-rw-r--r-- | src/include/draw.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/include/cache.h b/src/include/cache.h index 0f5a6c4..894e4e1 100644 --- a/src/include/cache.h +++ b/src/include/cache.h @@ -1,9 +1,9 @@ #ifndef CACHE_H #define CACHE_H -void save_to_cache(int g_hover, int e_hover, int true_hover, char *cfg_name); +void save_to_cache(int g_count, int g_hover, int *e_hover, int *e_offset, int true_hover, char *cfg_name); -void load_cache(int *g_hover, int *e_hover, int *true_hover, char *new_cfg_name); +void load_cache(int g_count, int *g_hover, int **e_hover, int **e_offset, int *true_hover, char *new_cfg_name); char *get_cache_path(bool create); diff --git a/src/include/draw.h b/src/include/draw.h index 0a6baba..387ced3 100644 --- a/src/include/draw.h +++ b/src/include/draw.h @@ -6,7 +6,7 @@ #define BUF_LEN 1024 extern int g_hover; -extern int e_hover; +extern int *e_hover; extern struct group **g; extern struct entry **e; |