en:ibm:prcp:kbd:getfocus

Differences

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

Link to this comparison view

en:ibm:prcp:kbd:getfocus [2014/05/16 17:11] – created valeriusen:ibm:prcp:kbd:getfocus [2016/09/15 02:36] (current) valerius
Line 1: Line 1:
 ==== KbdGetFocus ==== ==== KbdGetFocus ====
  
-**Bindings**: +**Bindings**: [[getfocus#C bindings|C]][[getfocus#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-#define INCL_KBD +
- +
-USHORT  rc = KbdGetFocus(IOWaitKbdHandle); +
- +
-USHORT           IOWait;        /* Indicate if wait */ +
-HKBD             KbdHandle;     /* Keyboard handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM**: +
-<code asm> +
-EXTRN  KbdGetFocus:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH   WORD    IOWait        ;Indicate if wait +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdGetFocus +
- +
-Returns WORD +
-</code>+
  
 This call binds the logical keyboard to the physical keyboard.  This call binds the logical keyboard to the physical keyboard. 
Line 52: Line 28:
  
 The keyboard handle identifies which logical keyboard to bind to. If the physical keyboard is not bound to a logical or default keyboard, then the bind proceeds immediately. The logical keyboard, identified by the handle, receives all further key strokes from the physical keyboard. If the physical keyboard is already in use by a logical keyboard, then the thread issuing //KbdGetFocus// waits until the bond can be made. Waiting threads do not execute in any definable order.  The keyboard handle identifies which logical keyboard to bind to. If the physical keyboard is not bound to a logical or default keyboard, then the bind proceeds immediately. The logical keyboard, identified by the handle, receives all further key strokes from the physical keyboard. If the physical keyboard is already in use by a logical keyboard, then the thread issuing //KbdGetFocus// waits until the bond can be made. Waiting threads do not execute in any definable order. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_KBD
 +
 +USHORT  rc = KbdGetFocus(IOWait, KbdHandle);
 +
 +USHORT           IOWait;        /* Indicate if wait */
 +HKBD             KbdHandle;     /* Keyboard handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  KbdGetFocus:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH   WORD    IOWait        ;Indicate if wait
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdGetFocus
 +
 +Returns WORD
 +</code>