en:ibm:prcp:kbd:setstatus

Differences

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

Link to this comparison view

en:ibm:prcp:kbd:setstatus [2014/05/16 17:59] – created valeriusen:ibm:prcp:kbd:setstatus [2016/09/15 02:58] (current) valerius
Line 1: Line 1:
 ==== KbdSetStatus ==== ==== KbdSetStatus ====
  
-**Bindings**: +**Bindings**: [[setstatus#C bindings|C]][[setstatus#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-typedef struct _KBDINFO {     /* kbst */ +
-  USHORT cb;                  /* length in bytes of this structure */ +
-  USHORT fsMask;              /* bit mask of functions to be altered */ +
-  USHORT chTurnAround;        /* define TurnAround character */ +
-  USHORT fsInterim;           /* interim character flags */ +
-  USHORT fsState;             /* shift states */ +
-}KBDINFO; +
- +
-#define INCL_KBD +
- +
-USHORT  rc = KbdSetStatus(StructureKbdHandle); +
- +
-PKBDINFO         Structure;     /* Data structure */ +
-HKBD             KbdHandle;     /* Keyboard Handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM** +
- +
-<code asm> +
-KBDINFO struc +
-  kbst_cb           dw  ? ;length in bytes of this structure +
-  kbst_fsMask       dw  ? ;bit mask of functions to be altered +
-  kbst_chTurnAround dw  ? ;define TurnAround character +
-  kbst_fsInterim    dw  ? ;interim character flags +
-  kbst_fsState      dw  ? ;shift states +
-KBDINFO ends +
- +
-EXTRN  KbdSetStatus:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH@  OTHER   Structure     ;Data structure +
-PUSH   WORD    KbdHandle     ;Keyboard Handle +
-CALL   KbdSetStatus +
-</code>+
  
 This call sets the characteristics of the keyboard.  This call sets the characteristics of the keyboard. 
Line 134: Line 95:
   * Interim character is not supported.    * Interim character is not supported. 
   * Turnaround character is not supported.    * Turnaround character is not supported. 
 +
 +=== C bindings ===
 +
 +<code c>
 +typedef struct _KBDINFO {     /* kbst */
 +  USHORT cb;                  /* length in bytes of this structure */
 +  USHORT fsMask;              /* bit mask of functions to be altered */
 +  USHORT chTurnAround;        /* define TurnAround character */
 +  USHORT fsInterim;           /* interim character flags */
 +  USHORT fsState;             /* shift states */
 +}KBDINFO;
 +
 +#define INCL_KBD
 +
 +USHORT  rc = KbdSetStatus(Structure, KbdHandle);
 +
 +PKBDINFO         Structure;     /* Data structure */
 +HKBD             KbdHandle;     /* Keyboard Handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +KBDINFO struc
 +  kbst_cb           dw  ? ;length in bytes of this structure
 +  kbst_fsMask       dw  ? ;bit mask of functions to be altered
 +  kbst_chTurnAround dw  ? ;define TurnAround character
 +  kbst_fsInterim    dw  ? ;interim character flags
 +  kbst_fsState      dw  ? ;shift states
 +KBDINFO ends
 +
 +EXTRN  KbdSetStatus:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH@  OTHER   Structure     ;Data structure
 +PUSH   WORD    KbdHandle     ;Keyboard Handle
 +CALL   KbdSetStatus
 +</code>