yaze 0.2.0
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 app {
9namespace core {
10
11void CopyImageToClipboard(const std::vector<uint8_t> &data);
12void GetImageFromClipboard(std::vector<uint8_t> &data, int &width, int &height);
13
14} // namespace core
15} // namespace app
16} // namespace yaze
17
18#endif // YAZE_APP_CORE_PLATFORM_CLIPBOARD_H
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