aboutsummaryrefslogtreecommitdiffstats
path: root/assets.h
blob: 1d18a0af0c8d4b6d6e8b21254eaa4d2b7f9d93de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/*
 * Copyright (C) 2018 Tomasz Kramkowski <tk@the-tk.com>
 * SPDX-License-Identifier: MIT
 */
#ifndef ASSETS_H
#define ASSETS_H

#include <stddef.h>

struct asset {
	void *data;
	size_t size;
};

#define BIE_ENTRY(name, pos, size) extern struct asset name;
#include "assets.idx"
#undef BIE_ENTRY

#endif // ASSETS_H