blob: 6fb7157596ef2751583a5e0c5ad8a3236150d4dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/*
* Copyright 2017 Google Inc.
*
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
#ifndef BinaryAsset_DEFINED
#define BinaryAsset_DEFINED
#include <cstddef>
struct BinaryAsset {
const char* name;
const void* data;
size_t len;
};
#endif // BinaryAsset_DEFINED
|