diff options
Diffstat (limited to 'externals/nx_tzdb/tzdb_template.h.in')
| -rw-r--r-- | externals/nx_tzdb/tzdb_template.h.in | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/externals/nx_tzdb/tzdb_template.h.in b/externals/nx_tzdb/tzdb_template.h.in new file mode 100644 index 000000000..289d002ea --- /dev/null +++ b/externals/nx_tzdb/tzdb_template.h.in | |||
| @@ -0,0 +1,18 @@ | |||
| 1 | // SPDX-FileCopyrightText: 2023 yuzu Emulator Project | ||
| 2 | // SPDX-License-Identifier: GPL-2.0-or-later | ||
| 3 | |||
| 4 | #pragma once | ||
| 5 | |||
| 6 | #include <cstdint> | ||
| 7 | #include <map> | ||
| 8 | #include <vector> | ||
| 9 | |||
| 10 | namespace NxTzdb { | ||
| 11 | |||
| 12 | // clang-format off | ||
| 13 | const static std::map<const char*, const std::vector<uint8_t>> @DIRECTORY_NAME@ = | ||
| 14 | { | ||
| 15 | @FILE_DATA@}; | ||
| 16 | // clang-format on | ||
| 17 | |||
| 18 | } // namespace NxTzdb | ||