Add Windows clipboard support

This commit is contained in:
Yukino Song
2024-09-28 03:31:50 +08:00
parent c72fb4544e
commit 1ae7157bba
9 changed files with 304 additions and 22 deletions

View File

@@ -1088,4 +1088,16 @@ get_local_ip_for_gateway() {
create_high_precision_timer() {
return std::make_unique<linux_high_precision_timer>();
}
std::string
get_clipboard() {
// Placeholder
return "";
}
bool
set_clipboard(const std::string& content) {
// Placeholder
return false;
}
} // namespace platf