• Home
  • Raw
  • Download

Lines Matching refs:client

47     (*(char *)&client->endianTest ? ((((s) & 0xff) << 8) | (((s) >> 8) & 0xff)) : (s))
50 (*(char *)&client->endianTest ? ((((l) & 0xff000000) >> 24) | \
56 (*(char *)&client->endianTest ? ((((l) & 0xff00000000000000ULL) >> 56) | \
154 typedef void (*HandleTextChatProc)(struct _rfbClient* client, int value, char *text);
164 typedef void (*HandleXvpMsgProc)(struct _rfbClient* client, uint8_t version, uint8_t opcode);
165 typedef void (*HandleKeyboardLedStateProc)(struct _rfbClient* client, int value, int pad);
166 typedef rfbBool (*HandleCursorPosProc)(struct _rfbClient* client, int x, int y);
167 typedef void (*SoftCursorLockAreaProc)(struct _rfbClient* client, int x, int y, int w, int h);
168 typedef void (*SoftCursorUnlockScreenProc)(struct _rfbClient* client);
169 typedef void (*GotFrameBufferUpdateProc)(struct _rfbClient* client, int x, int y, int w, int h);
170 typedef void (*FinishedFrameBufferUpdateProc)(struct _rfbClient* client);
171 typedef char* (*GetPasswordProc)(struct _rfbClient* client);
172 typedef rfbCredential* (*GetCredentialProc)(struct _rfbClient* client, int credentialType);
173 typedef rfbBool (*MallocFrameBufferProc)(struct _rfbClient* client);
174 typedef void (*GotXCutTextProc)(struct _rfbClient* client, const char *text, int textlen);
175 typedef void (*BellProc)(struct _rfbClient* client);
177 typedef void (*GotCursorShapeProc)(struct _rfbClient* client, int xhot, int yhot, int width, int he…
178 typedef void (*GotCopyRectProc)(struct _rfbClient* client, int src_x, int src_y, int w, int h, int …
361 extern rfbBool HandleCursorShape(rfbClient* client,int xhot, int yhot, int width, int height, uint3…
373 extern rfbBool ConnectToRFBServer(rfbClient* client,const char *hostname, int port);
374 extern rfbBool ConnectToRFBRepeater(rfbClient* client,const char *repeaterHost, int repeaterPort, c…
375 extern void SetClientAuthSchemes(rfbClient* client,const uint32_t *authSchemes, int size);
376 extern rfbBool InitialiseRFBConnection(rfbClient* client);
394 extern rfbBool SetFormatAndEncodings(rfbClient* client);
395 extern rfbBool SendIncrementalFramebufferUpdateRequest(rfbClient* client);
416 extern rfbBool SendFramebufferUpdateRequest(rfbClient* client,
419 extern rfbBool SendScaleSetting(rfbClient* client,int scaleSetting);
440 extern rfbBool SendPointerEvent(rfbClient* client,int x, int y, int buttonMask);
450 extern rfbBool SendKeyEvent(rfbClient* client,uint32_t key, rfbBool down);
463 extern rfbBool SendClientCutText(rfbClient* client,char *str, int len);
474 extern rfbBool HandleRFBServerMessage(rfbClient* client);
482 extern rfbBool TextChatSend(rfbClient* client, char *text);
488 extern rfbBool TextChatOpen(rfbClient* client);
494 extern rfbBool TextChatClose(rfbClient* client);
495 extern rfbBool TextChatFinish(rfbClient* client);
496 extern rfbBool PermitServerInput(rfbClient* client, int enabled);
497 extern rfbBool SendXvpMsg(rfbClient* client, uint8_t version, uint8_t code);
501 extern rfbBool SupportsClient2Server(rfbClient* client, int messageType);
502 extern rfbBool SupportsServer2Client(rfbClient* client, int messageType);
519 void rfbClientSetClientData(rfbClient* client, void* tag, void* data);
528 void* rfbClientGetClientData(rfbClient* client, void* tag);
549 extern rfbBool ReadFromRFBServer(rfbClient* client, char *out, unsigned int n);
550 extern rfbBool WriteToRFBServer(rfbClient* client, char *buf, int n);
573 extern int WaitForMessage(rfbClient* client,unsigned int usecs);
632 rfbBool rfbInitClient(rfbClient* client,int* argc,char** argv);
640 void rfbClientCleanup(rfbClient* client);