コード例 #1
0
ファイル: Util.cpp プロジェクト: peejaybee/EmulationStation
std::string getCrc(const boost::filesystem::path& path)
{
    CRC32 algorithm;
    hashFile(path, algorithm);
    return algorithm.getHash();
}