blob: 504225cd283e267a03b82739adc23fe547026ec3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef PKE_EMBED_EMBEDDED_FILE_H
#define PKE_EMBED_EMBEDDED_FILE_H
#include "../src/asset-types.h"
#include <stddef.h>
struct embedded_file {
AssetKey name;
const unsigned char *data;
const size_t size;
};
#endif /* PKE_EMBED_EMBEDDED_FILE_H */
|