• Home
  • Raw
  • Download

Lines Matching refs:client

43     (*(char *)&client->endianTest ? ((((s) & 0xff) << 8) | (((s) >> 8) & 0xff)) : (s))
46 (*(char *)&client->endianTest ? ((((l) & 0xff000000) >> 24) | \
52 (*(char *)&client->endianTest ? ((((l) & 0xff00000000000000ULL) >> 56) | \
150 typedef void (*HandleTextChatProc)(struct _rfbClient* client, int value, char *text);
160 typedef void (*HandleXvpMsgProc)(struct _rfbClient* client, uint8_t version, uint8_t opcode);
161 typedef void (*HandleKeyboardLedStateProc)(struct _rfbClient* client, int value, int pad);
162 typedef rfbBool (*HandleCursorPosProc)(struct _rfbClient* client, int x, int y);
163 typedef void (*SoftCursorLockAreaProc)(struct _rfbClient* client, int x, int y, int w, int h);
164 typedef void (*SoftCursorUnlockScreenProc)(struct _rfbClient* client);
165 typedef void (*GotFrameBufferUpdateProc)(struct _rfbClient* client, int x, int y, int w, int h);
166 typedef void (*FinishedFrameBufferUpdateProc)(struct _rfbClient* client);
167 typedef char* (*GetPasswordProc)(struct _rfbClient* client);
168 typedef rfbCredential* (*GetCredentialProc)(struct _rfbClient* client, int credentialType);
169 typedef rfbBool (*MallocFrameBufferProc)(struct _rfbClient* client);
170 typedef void (*GotXCutTextProc)(struct _rfbClient* client, const char *text, int textlen);
171 typedef void (*BellProc)(struct _rfbClient* client);
173 typedef void (*GotCursorShapeProc)(struct _rfbClient* client, int xhot, int yhot, int width, int he…
174 typedef void (*GotCopyRectProc)(struct _rfbClient* client, int src_x, int src_y, int w, int h, int …
353 extern rfbBool HandleCursorShape(rfbClient* client,int xhot, int yhot, int width, int height, uint3…
365 extern rfbBool ConnectToRFBServer(rfbClient* client,const char *hostname, int port);
366 extern rfbBool ConnectToRFBRepeater(rfbClient* client,const char *repeaterHost, int repeaterPort, c…
367 extern void SetClientAuthSchemes(rfbClient* client,const uint32_t *authSchemes, int size);
368 extern rfbBool InitialiseRFBConnection(rfbClient* client);
386 extern rfbBool SetFormatAndEncodings(rfbClient* client);
387 extern rfbBool SendIncrementalFramebufferUpdateRequest(rfbClient* client);
408 extern rfbBool SendFramebufferUpdateRequest(rfbClient* client,
411 extern rfbBool SendScaleSetting(rfbClient* client,int scaleSetting);
432 extern rfbBool SendPointerEvent(rfbClient* client,int x, int y, int buttonMask);
442 extern rfbBool SendKeyEvent(rfbClient* client,uint32_t key, rfbBool down);
455 extern rfbBool SendClientCutText(rfbClient* client,char *str, int len);
466 extern rfbBool HandleRFBServerMessage(rfbClient* client);
474 extern rfbBool TextChatSend(rfbClient* client, char *text);
480 extern rfbBool TextChatOpen(rfbClient* client);
486 extern rfbBool TextChatClose(rfbClient* client);
487 extern rfbBool TextChatFinish(rfbClient* client);
488 extern rfbBool PermitServerInput(rfbClient* client, int enabled);
489 extern rfbBool SendXvpMsg(rfbClient* client, uint8_t version, uint8_t code);
493 extern rfbBool SupportsClient2Server(rfbClient* client, int messageType);
494 extern rfbBool SupportsServer2Client(rfbClient* client, int messageType);
511 void rfbClientSetClientData(rfbClient* client, void* tag, void* data);
520 void* rfbClientGetClientData(rfbClient* client, void* tag);
541 extern rfbBool ReadFromRFBServer(rfbClient* client, char *out, unsigned int n);
542 extern rfbBool WriteToRFBServer(rfbClient* client, char *buf, int n);
565 extern int WaitForMessage(rfbClient* client,unsigned int usecs);
624 rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv);
632 void rfbClientCleanup(rfbClient* client);