11 lines
202 B
C++
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 |