yaze 0.2.0
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
clipboard.cc
Go to the documentation of this file.
2
3#include <cstdint>
4#include <vector>
5
6namespace yaze {
7namespace app {
8namespace core {
9
10void CopyImageToClipboard(const std::vector<uint8_t>& data) {}
11void GetImageFromClipboard(std::vector<uint8_t>& data, int& width,
12 int& height) {}
13
14} // namespace core
15} // namespace app
16} // namespace yaze
void CopyImageToClipboard(const std::vector< uint8_t > &data)
Definition clipboard.cc:10
void GetImageFromClipboard(std::vector< uint8_t > &data, int &width, int &height)
Definition clipboard.cc:11
Definition common.cc:21