Lines Matching refs:keysym
20 uint32_t keysym; member
75 static void got_key(rfbBool down,rfbKeySym keysym,rfbClientRec* cl) in got_key() argument
80 res->keysym=keysym; in got_key()
624 return r->keysym; in getkeysym()
714 bool_t sendkey(resource_t res,keysym_t keysym,bool_t keydown) in sendkey() argument
719 return SendKeyEvent(r->client,keysym,keydown); in sendkey()
730 int keysym = *string; in sendascii() local
733 if (keysym >= 8 && keysym < ' ') in sendascii()
734 keysym += 0xff00; in sendascii()
735 else if (keysym >= 'A' && keysym <= 'Z') in sendascii()
737 else if (keysym > '~') { in sendascii()
749 if (!SendKeyEvent(r->client,keysym,i)) in sendascii()