wip. work on clipboard

git-svn-id: http://svn2.nishi.boats/svn/milsko/trunk@581 b9cfdab3-6d41-4d17-bbe4-086880011989
This commit is contained in:
NishiOwO
2025-11-03 19:05:33 +00:00
parent ee2f19eb9a
commit 1640c834b5
4 changed files with 87 additions and 10 deletions

View File

@@ -786,3 +786,17 @@ void MwLLGrabPointer(MwLL handle, int toggle) {
handle->grabbed = 0;
}
}
void MwLLSetClipboard(MwLL handle, const char* text) {
/* TODO */
(void)handle;
(void)text;
}
char* MwLLGetClipboard(MwLL handle) {
/* TODO */
(void)handle;
return NULL;
}