Files
spice2x-r3d/misc/clipboard.h
T
2025-05-07 00:25:31 +09:00

10 lines
196 B
C++

#pragma once
#include <filesystem>
namespace clipboard {
void copy_image(const std::filesystem::path path);
void copy_text(const std::string& str);
const std::string paste_text();
}