Commit c7730d9b authored by dscho's avatar dscho

added -encodings

parent fefcb918
immediate:
----------
TightVNC encoding!!! Regression!!!
CoRRE, Hextile encoding!!! Regression!!!
extra_bytes in rfbDrawCharWithClip.
tested mouse buttons make copy rect, but text is not marked as mod.
......
......@@ -196,7 +196,15 @@ int main(int argc,char** argv) {
SDL_Init(SDL_INIT_VIDEO | SDL_INIT_NOPARACHUTE);
cl=rfbGetClient(5,3,2);
//cl=rfbGetClient(8,3,4);
i=1;
while(i<argc-1) {
if(i+1<argc-1 && !strcmp(argv[i],"-encodings")) {
cl->appData.encodingsString=argv[i+1];
i+=2;
}
}
argc-=i-1;
memmove(argv+1,argv+i,(argc-1)*sizeof(char*));
cl->MallocFrameBuffer=resize;
cl->GotFrameBufferUpdate=update;
if(!rfbInitClient(cl,&argc,argv))
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment