yaze 0.2.2
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 core {
8
9void CopyImageToClipboard(const std::vector<uint8_t>& data) {}
10void GetImageFromClipboard(std::vector<uint8_t>& data, int& width,
11 int& height) {}
12
13} // namespace core
14} // namespace yaze
void GetImageFromClipboard(std::vector< uint8_t > &data, int &width, int &height)
Definition clipboard.cc:10
void CopyImageToClipboard(const std::vector< uint8_t > &data)
Definition clipboard.cc:9
Main namespace for the application.
Definition controller.cc:18