en:ibm:prcp:kbd:setcp

Differences

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

Link to this comparison view

en:ibm:prcp:kbd:setcp [2014/05/16 18:29] – created valeriusen:ibm:prcp:kbd:setcp [2016/09/15 02:51] (current) valerius
Line 1: Line 1:
 ==== KbdSetCp ==== ==== KbdSetCp ====
  
-**Bindings**: +**Bindings**: [[setcp#C bindings|C]][[setcp#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-#define INCL_KBD +
- +
-USHORT  rc = KbdSetCp(ReservedCodePageID, KbdHandle); +
- +
-USHORT           Reserved;      /* Reserved (must be zero) */ +
-USHORT           CodePageID;    /* code page ID */ +
-HKBD             KbdHandle;     /* Keyboard handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM**: +
-<code asm> +
-EXTRN  KbdSetCp:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH   WORD    Reserved      ;Reserved (must be zero) +
-PUSH   WORD    CodePageID    ;code page ID +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdSetCp +
- +
-Returns WORD +
-</code>+
  
 This call allows the process to set the code page used to translate key strokes received from the keyboard.  This call allows the process to set the code page used to translate key strokes received from the keyboard. 
Line 64: Line 38:
  
 Keyboard code page support is not available without the DEVINFO=KBD statement in the CONFIG.SYS file. Refer to IBM Operating System/2 Standard Edition Version 1.2 Using Advanced Features for a complete description of CODEPAGE and DEVINFO.  Keyboard code page support is not available without the DEVINFO=KBD statement in the CONFIG.SYS file. Refer to IBM Operating System/2 Standard Edition Version 1.2 Using Advanced Features for a complete description of CODEPAGE and DEVINFO. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_KBD
 +
 +USHORT  rc = KbdSetCp(Reserved, CodePageID, KbdHandle);
 +
 +USHORT           Reserved;      /* Reserved (must be zero) */
 +USHORT           CodePageID;    /* code page ID */
 +HKBD             KbdHandle;     /* Keyboard handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  KbdSetCp:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH   WORD    Reserved      ;Reserved (must be zero)
 +PUSH   WORD    CodePageID    ;code page ID
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdSetCp
 +
 +Returns WORD
 +</code>
 +