mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-24 19:43:33 +01:00
17 lines
549 B
C
17 lines
549 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(vcpkg::Files::Filesystem& fs,
|
||
|
const std::string& url,
|
||
|
const fs::path& download_path,
|
||
|
const std::string& sha512);
|
||
|
}
|