Created an installer which can create secure folders, create a background process and downloa the main applications files.
6 lines
147 B
C++
6 lines
147 B
C++
#pragma once
|
|
#include <iostream>
|
|
#include <string>
|
|
#include <curl/curl.h>
|
|
int download_file_from_srv(const char* url, const char* outputFileName);
|