From 42966e3e531b8e46e4ab31480d45aa7a141f19ce Mon Sep 17 00:00:00 2001 From: stkhan Date: Thu, 5 May 2022 17:32:35 +0000 Subject: added config files, and nsxiv --- nsxiv/icon/data.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 nsxiv/icon/data.h (limited to 'nsxiv/icon/data.h') diff --git a/nsxiv/icon/data.h b/nsxiv/icon/data.h new file mode 100644 index 0000000..98ac5f3 --- /dev/null +++ b/nsxiv/icon/data.h @@ -0,0 +1,14 @@ +#ifndef ICON_DATA_H +#define ICON_DATA_H + +typedef struct { + unsigned int size; + unsigned int cnt; + const unsigned char *data; +} icon_data_t; + +#define ICON_(s) { s, ARRLEN(icon_data_##s), icon_data_##s } + +#include "data.gen.h" + +#endif /* ICON_DATA_H */ -- cgit v1.2.3