stubs of new functions

This commit is contained in:
Adam D. Ruppe 2020-02-04 11:02:32 -05:00
parent ca2e63fd30
commit 1fe03cc9fb
1 changed files with 28 additions and 0 deletions

View File

@ -833,6 +833,34 @@ struct Terminal {
uint tcaps;
bool inlineImagesSupported() {
return (tcaps & TerminalCapabilities.arsdImage) ? true : false;
}
bool clipboardSupported() {
return (tcaps & TerminalCapabilities.arsdImage) ? true : false;
}
// stubs that are dependent on tcaps
void displayInlineImage(ubyte[] imageData) {
}
void requestCopyToClipboard(string data) {
}
void requestPasteFromClipboard() {
}
void requestCopyToPrimary(string data) {
}
void requestPasteFromPrimary() {
}
version(Posix)
/**
* Constructs an instance of Terminal representing the capabilities of