2024-03-12 19:26:56 +00:00
|
|
|
// SPDX-FileCopyrightText: 2023 sudachi Emulator Project
|
2024-03-06 05:22:02 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <cstdint>
|
|
|
|
#include <map>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace NxTzdb {
|
|
|
|
|
|
|
|
// clang-format off
|
|
|
|
const static std::map<const char*, const std::vector<uint8_t>> @DIRECTORY_NAME@ =
|
|
|
|
{
|
|
|
|
@FILE_DATA@};
|
|
|
|
// clang-format on
|
|
|
|
|
|
|
|
} // namespace NxTzdb
|