mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2024-11-15 13:57:57 -07:00
51c77e8eea
Allows to test current game, an arbitrary game or the sdcard of all players at once.
13 lines
269 B
C++
13 lines
269 B
C++
// 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);
|
|
} |