mirror of
https://codeberg.org/nsxiv/nsxiv
synced 2024-10-31 09:20:19 +00:00
8f6ba7b868
Co-authored-by: Berke Kocaoğlu <berke.kocaoglu@metu.edu.tr> Co-authored-by: NRK <nrk@disroot.org>
15 lines
254 B
C
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 */
|