blob: 98ac5f3fb067b9a13a858c68a55dcbeae22e39df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
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 */
|