Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- Telix/SALT v3.15 & RS-232, Hayes - <b>keyget</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
  KEYGET

  .  Summary

  keyget(int <key>, int <table>, str <buffer>);

  .  Description

  The keyget function is used to look at what text is assigned to a
  key. <key> is an integer value representing the key.  Any macro
  text assigned to this key will be placed in <buffer>. Telix keeps
  two key macro definition tables in memory at all times, a user key
  table, and a terminal key table, loaded in whenever the current
  terminal is changed. If <table> is 0, the key is assumed to be in
  the user table. If <table> is 1, the key is assumed to be in the
  terminal table.

  .  Return Value

  None.

  .  Example

  str s[100];
  prints("Text currently assigned to the F1 key in user table is:)"
  keyget(0x3a00, 0, s);
  prints(s);

See Also: keyset keyload keysave ASCII table keyboard Key Codes

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson