You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
430 B
17 lines
430 B
/** |
|
* @example filetransfer.c |
|
*/ |
|
|
|
#include <rfb/rfb.h> |
|
|
|
int main(int argc,char** argv) |
|
{ |
|
rfbScreenInfoPtr server=rfbGetScreen(&argc,argv,400,300,8,3,4); |
|
if(!server) |
|
return 0; |
|
server->frameBuffer=(char*)malloc(400*300*4); |
|
rfbRegisterTightVNCFileTransferExtension(); |
|
rfbInitServer(server); |
|
rfbRunEventLoop(server,-1,FALSE); |
|
return(0); |
|
}
|
|
|