Files
ma/src/client_backend/update.h

12 lines
318 B
C++

#pragma once
#ifndef UPDATE_H
#define UPDATE_H
#include <curl/curl.h>
#include<string>
int update_db(const std::string& folder_path);
int update_db2(const std::string& folder_path);
int update_settings(const std::string& settings_type);
int action_update_settings();
int action_update_db();
int update_system();
#endif