/*
{"description" : "This API provides access to the copy/paste clipboard of the operating system."
}
*/
interface Clipboard {
/*
{"@description" : "Sets the clipboard to contain the given text content.",
"content" : "The text content to place on the clipboard."
}
*/
void setContent(char content[])
/*
{"@description" : "Gets the current clipboard content, if it can be represented as text (or null otherwise).",
"@return" : "The text content on the clipboard."
}
*/
char[] getContent()
}To propose a new revision to this entity, use dana source put -ut your/new/version.dn -n os.Clipboard -m "reason for update" -u yourUsername
Version 1 (this version) by barry
Notes for this version: Standard Library Initialisation