added -encodings

pull/1/head
dscho 20 years ago
parent fefcb9188a
commit c7730d9bad

@ -1,7 +1,7 @@
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))

Loading…
Cancel
Save