16 lines
301 B
C++
16 lines
301 B
C++
/*
|
|
* Copyright 2016 - 2022 Gary Talent (gary@drinkingtea.net). All rights reserved.
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <ox/std/string.hpp>
|
|
|
|
namespace nostalgia::core {
|
|
|
|
ox::String getClipboardText(class Context *ctx) noexcept;
|
|
|
|
void setClipboardText(class Context *ctx, const ox::String &text) noexcept;
|
|
|
|
}
|