mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 11:37:12 +01:00
17 lines
526 B
C++
17 lines
526 B
C++
#pragma once
|
|
|
|
#include <vcpkg/base/files.h>
|
|
|
|
namespace vcpkg::Downloads
|
|
{
|
|
void verify_downloaded_file_hash(const Files::Filesystem& fs,
|
|
const std::string& url,
|
|
const fs::path& path,
|
|
const std::string& sha512);
|
|
|
|
void download_file(Files::Filesystem& fs,
|
|
const std::string& url,
|
|
const fs::path& download_path,
|
|
const std::string& sha512);
|
|
}
|