password_manager/include/environment.hpp
Nikola Petrov 5b0dcb23ea rename sys to environment
and change the environment defenition files
to be in environment dir
2024-07-22 10:43:35 +02:00

11 lines
202 B
C++

#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