en:ibm:prcp:kbd:flushbuf

Differences

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

Link to this comparison view

en:ibm:prcp:kbd:flushbuf [2014/05/13 14:57] – created valeriusen:ibm:prcp:kbd:flushbuf [2016/09/15 02:30] (current) valerius
Line 1: Line 1:
 ==== KbdFlushBuffer ==== ==== KbdFlushBuffer ====
  
-**Bindings**:  +**Bindings**: [[flushbuf#bindings|C]], [[flushbuf#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-#define INCL_KBD +
- +
-USHORT  rc = KbdFlushBuffer(KbdHandle); +
- +
-HKBD             KbdHandle;     /* Keyboard handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM**: +
-<code asm> +
-EXTRN  KbdFlushBuffer:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdFlushBuffer +
- +
-Returns WORD +
-</code>+
  
 This call clears the keystroke buffer.  This call clears the keystroke buffer. 
Line 50: Line 28:
  
 Some options operate differently in the DOS mode than in the OS/2 mode. The //KbdHandle// is ignored when coding in the DOS mode.  Some options operate differently in the DOS mode than in the OS/2 mode. The //KbdHandle// is ignored when coding in the DOS mode. 
 +
 +=== C bindings ===
 +
 +<code c>
 +#define INCL_KBD
 +
 +USHORT  rc = KbdFlushBuffer(KbdHandle);
 +
 +HKBD             KbdHandle;     /* Keyboard handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +EXTRN  KbdFlushBuffer:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdFlushBuffer
 +
 +Returns WORD
 +</code>