tzdb_template.h.in 348 B

12345678910111213141516171819
  1. // SPDX-FileCopyrightText: 2023 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-2.0-or-later
  3. #pragma once
  4. #include <cstdint>
  5. #include <map>
  6. #include <vector>
  7. namespace NxTzdb {
  8. // clang-format off
  9. const static std::map<const char*, const std::vector<uint8_t>> @DIRECTORY_NAME@ =
  10. {
  11. @FILE_DATA@};
  12. // clang-format on
  13. } // namespace NxTzdb