1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-01 03:21:41 +00:00
OpenMW/components/bsa/ba2file.hpp
2024-01-21 23:03:37 +03:00

14 lines
227 B
C++

#ifndef BSA_BA2_FILE_H
#define BSA_BA2_FILE_H
#include <cstdint>
#include <string>
namespace Bsa
{
uint32_t generateHash(const std::string& name);
uint32_t generateExtensionHash(std::string_view extension);
}
#endif