This repository has been archived on 2024-02-08. You can view files and clone it, but cannot push or open issues/pull-requests.
nsxiv/icon/data.h

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