Files
NXST/include/client.hpp
T
2026-04-25 09:55:34 +03:00

11 lines
253 B
C++

#include <filesystem>
#include <string>
namespace fs = std::filesystem;
using path = fs::path;
int transfer_files(path directory);
bool isClientTransferDone();
void cancelClientTransfer();
double getClientProgress();
std::string getClientStatusText();