VNC client

This commit is contained in:
2026-09-15 01:09:45 -04:00
parent 7023b3c358
commit 6a8a462b9f
68 changed files with 17865 additions and 406 deletions
+15
View File
@@ -0,0 +1,15 @@
/*
* noVNC: HTML5 VNC client
* Copyright (C) 2020 The noVNC authors
* Licensed under MPL 2.0 (see LICENSE.txt)
*
* See README.md for usage and integration instructions.
*/
export function toUnsigned32bit(toConvert) {
return toConvert >>> 0;
}
export function toSigned32bit(toConvert) {
return toConvert | 0;
}