You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

18 lines
375 B

#pragma once
#include <array>
#include <cstddef>
#include <cstdint>
#include <string_view>
namespace devilution {
constexpr size_t MaxMpqPathSize = 256;
using MpqFileHash = std::array<std::uint32_t, 3>;
#if !defined(UNPACKED_MPQS) || !defined(UNPACKED_SAVES)
MpqFileHash CalculateMpqFileHash(std::string_view filename);
#endif
} // namespace devilution