en:ibm:prcp:kbd:setcustxt

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

en:ibm:prcp:kbd:setcustxt [2014/05/16 19:26] – created valeriusen:ibm:prcp:kbd:setcustxt [2016/09/15 02:53] (current) valerius
Line 1: Line 1:
 ==== KbdSetCustXt ==== ==== KbdSetCustXt ====
  
-**Bindings**: +**Bindings**: [[setcustxt#C bindings|C]][[setcustxt#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-#define INCL_KBD +
- +
-USHORT  rc = KbdSetCustXt(XlatetableKbdHandle); +
- +
-PUSHORT          Xlatetable;    /* Translation Table */ +
-HKBD             KbdHandle;     /* Keyboard handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM**: +
-<code asm> +
-EXTRN  KbdSetCustXt:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH@  WORD    CodePage      ;Translation Table +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdSetCustXt +
- +
-Returns WORD +
-</code>+
  
 This call installs, on the specified handle, the translate table which this call points to. This translate table affects only this handle.  This call installs, on the specified handle, the translate table which this call points to. This translate table affects only this handle. 
Line 54: Line 30:
  
 //[[setcp|KbdSetCp]]// reverses the action of //KbdSetCustXt// and sets the handle equal to one of the system translate tables. If memory is dynamically allocated by the caller for the translate table and is freed before the //[[setcp|KbdSetCp]]// is performed, //[[setcp|KbdSetCp]]// and future translations may fail.  //[[setcp|KbdSetCp]]// reverses the action of //KbdSetCustXt// and sets the handle equal to one of the system translate tables. If memory is dynamically allocated by the caller for the translate table and is freed before the //[[setcp|KbdSetCp]]// is performed, //[[setcp|KbdSetCp]]// and future translations may fail. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_KBD
 +
 +USHORT  rc = KbdSetCustXt(Xlatetable, KbdHandle);
 +
 +PUSHORT          Xlatetable;    /* Translation Table */
 +HKBD             KbdHandle;     /* Keyboard handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  KbdSetCustXt:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH@  WORD    CodePage      ;Translation Table
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdSetCustXt
 +
 +Returns WORD
 +</code>