This commit is contained in:
Jovi Hsu 2021-11-08 21:37:12 +08:00
parent fb4c97f95b
commit d350dbe0bf
2 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1 @@
pub mod vnc;

View File

@ -0,0 +1,5 @@
pub struct VncHandler {
wsFrame: Vec<u8>,
imageFrame: Vec<u8>,
outputFrame: Vec<u8>,
}