mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 06:35:30 +00:00
14 lines
228 B
C++
14 lines
228 B
C++
#ifndef COMPONENTS_FILES_HASH_H
|
|
#define COMPONENTS_FILES_HASH_H
|
|
|
|
#include <cstdint>
|
|
#include <istream>
|
|
#include <string>
|
|
|
|
namespace Files
|
|
{
|
|
std::uint64_t getHash(const std::string& fileName, std::istream& stream);
|
|
}
|
|
|
|
#endif
|