rename sys to environment

and change the environment defenition files
to be in environment dir
This commit is contained in:
Nikola Petrov
2024-07-22 10:43:35 +02:00
parent 8b60cdc81b
commit 5b0dcb23ea
8 changed files with 225 additions and 217 deletions

11
include/environment.hpp Normal file
View File

@@ -0,0 +1,11 @@
#ifndef WIN_HPP
#define WIN_HPP
#include <optional>
#include <string>
bool put_data_on_clipboard(const char *text);
std::string get_user_password();
std::optional<std::string> get_save_path();
#endif