blob: 3d23783ec2e7f65713b68981ac5499cd8bd6f8ed (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// Copyright 2016 Dolphin Emulator Project
// Licensed under GPLv2+
// Refer to the license.txt file included.
#pragma once
#include <functional>
#include <string>
namespace MD5
{
std::string MD5Sum(const std::string& file_name, std::function<bool(int)> progress);
}
|