mirror of
https://github.com/WerWolv/ImHex.git
synced 2026-04-02 13:37:42 -05:00
17 lines
329 B
C++
17 lines
329 B
C++
#pragma once
|
|
|
|
#include <hex.hpp>
|
|
#include <span>
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace hex::clipboard {
|
|
|
|
void init();
|
|
void setBinaryData(std::span<const u8> data);
|
|
[[nodiscard]] std::vector<u8> getBinaryData();
|
|
void setTextData(const std::string &string);
|
|
[[nodiscard]] std::string getTextData();
|
|
|
|
}
|