summaryrefslogtreecommitdiff
path: root/src/include/cache.h
diff options
context:
space:
mode:
authorlouie <lshprung@tutanota.com>2023-06-19 17:28:39 -0700
committerlouie <lshprung@tutanota.com>2023-06-19 17:28:39 -0700
commit5443773a4ef21ae63ab5f3632909cf253368a508 (patch)
treea95a16490131cc15bb665926698a4ef12b2deeb2 /src/include/cache.h
parenta11237da7f7722d37c42b49e86c6ddeb85486d62 (diff)
parent5683ccf3a01d8d97b08f8ecbf656a3d92f9737ef (diff)
Merge remote-tracking branch 'origin/testing'
Diffstat (limited to 'src/include/cache.h')
-rw-r--r--src/include/cache.h4
1 files changed, 2 insertions, 2 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);