mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-10 15:39:02 +00:00
15 lines
260 B
C++
15 lines
260 B
C++
#ifndef COMPONENTS_FILES_HASH_H
|
|
#define COMPONENTS_FILES_HASH_H
|
|
|
|
#include <array>
|
|
#include <cstdint>
|
|
#include <istream>
|
|
#include <string>
|
|
|
|
namespace Files
|
|
{
|
|
std::array<std::uint64_t, 2> getHash(const std::string& fileName, std::istream& stream);
|
|
}
|
|
|
|
#endif
|