Files
yaze/src/app/core/platform/clipboard.cc
2025-09-27 00:25:45 -04:00

16 lines
359 B
C++

#include "app/core/platform/clipboard.h"
#include <cstdint>
#include <vector>
namespace yaze {
namespace core {
#if YAZE_LIB_PNG == 1
void CopyImageToClipboard(const std::vector<uint8_t>& data) {}
void GetImageFromClipboard(std::vector<uint8_t>& data, int& width,
int& height) {}
#endif
} // namespace core
} // namespace yaze