2024-01-14 21:43:49 +01: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