nsxiv/icon/data.h
mamg22 8f6ba7b868
Embed new nsxiv icon (#163)
Co-authored-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr>
Co-authored-by: NRK <nrk@disroot.org>
2021-11-13 17:43:15 +00:00

15 lines
254 B
C

#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 */