en:ibm:prcp:kbd:getstatus

Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
en:ibm:prcp:kbd:getstatus [2014/05/16 17:50] valeriusen:ibm:prcp:kbd:getstatus [2016/09/15 02:41] (current) valerius
Line 1: Line 1:
 ==== KbdGetStatus ==== ==== KbdGetStatus ====
  
-**Bindings**: +**Bindings**: [[getstatus#C bindings|C]][[getstatus#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 = KbdGetStatus(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  KbdGetStatus:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH@  OTHER   Structure     ;Data structure +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdGetStatus +
- +
-Returns WORD +
-</code>+
  
 This call gets the current state of the keyboard.  This call gets the current state of the keyboard. 
Line 138: Line 98:
   * NLS_SHIFT_STATE is always NULL.    * NLS_SHIFT_STATE is always NULL. 
   * //KbdHandle// is ignored.    * //KbdHandle// is ignored. 
 +
 +=== 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 = KbdGetStatus(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  KbdGetStatus:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH@  OTHER   Structure     ;Data structure
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdGetStatus
 +
 +Returns WORD
 +</code>