yaze 0.2.2
Link to the Past ROM Editor
 
Loading...
Searching...
No Matches
clipboard.h
Go to the documentation of this file.
1#ifndef YAZE_APP_CORE_PLATFORM_CLIPBOARD_H
2#define YAZE_APP_CORE_PLATFORM_CLIPBOARD_H
3
4#include <cstdint>
5#include <vector>
6
7namespace yaze {
8namespace core {
9
10void CopyImageToClipboard(const std::vector<uint8_t> &data);
11void GetImageFromClipboard(std::vector<uint8_t> &data, int &width, int &height);
12
13} // namespace core
14} // namespace yaze
15
16#endif // YAZE_APP_CORE_PLATFORM_CLIPBOARD_H
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