diff options
author | louie <lshprung@yahoo.com> | 2020-12-29 17:09:17 -0800 |
---|---|---|
committer | louie <lshprung@yahoo.com> | 2020-12-29 17:09:17 -0800 |
commit | 9875aaebf2d44c3f38be3c72b0c9c0af9422f8cc (patch) | |
tree | 189d89d948f7a7e7f3638928d483f3ecaf8d9142 /include/cache.h | |
parent | 3624ef3e18fa074ed7fadb11da68f61896dd67d3 (diff) |
Added menu location caching
Diffstat (limited to 'include/cache.h')
-rw-r--r-- | include/cache.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/cache.h b/include/cache.h new file mode 100644 index 0000000..b3f0adb --- /dev/null +++ b/include/cache.h @@ -0,0 +1,8 @@ +#ifndef CACHE_H +#define CACHE_H + +void save_to_cache(int g_hover, int e_hover, int true_hover, char *cfg_name); + +void load_cache(int *g_hover, int *e_hover, int *true_hover, char *new_cfg_name); + +#endif |