en:ibm:prcp:kbd:strin

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:strin [2014/05/16 19:21] valeriusen:ibm:prcp:kbd:strin [2016/09/15 03:00] (current) valerius
Line 1: Line 1:
 ==== KndStringIn ==== ==== KndStringIn ====
  
-**Bindings**: +**Bindings**: [[strin#C bindings|C]][[strin#MASM bindings|MASM]]
- +
-**C**: +
-<code c> +
-typedef struct _STRINGINBUF {   /* kbsi */ +
-  USHORT cb;                    /* input buffer length */ +
-  USHORT cchIn;                 /* received input length */ +
-} STRINGINBUF; +
- +
-#define INCL_KBD +
- +
-USHORT  rc = KbdStringIn(CharBufferLength, IOWait, KbdHandle); +
- +
-PCH              CharBuffer;    /* Char string buffer */ +
-PSTRINGINBUF     Length;        /* Length table */ +
-USHORT           IOWait;        /* Indicate if wait for char */ +
-HKBD             KbdHandle;     /* Keyboard handle */ +
- +
-USHORT           rc;            /* return code */ +
-</code> +
- +
-**MASM**: +
-<code asm> +
-STRINGINBUF struc +
-  kbsi_cb    dw  ? ;input buffer length +
-  kbsi_cchIn dw  ? ;received input length +
-STRINGINBUF ends +
- +
-EXTRN  KbdStringIn:FAR +
-INCL_KBD            EQU 1 +
- +
-PUSH@  OTHER   CharBuffer    ;Char string buffer +
-PUSH@  OTHER   Length        ;Length table +
-PUSH   WORD    IOWait        ;Indicate if wait for char +
-PUSH   WORD    KbdHandle     ;Keyboard handle +
-CALL   KbdStringIn +
- +
-Returns WORD +
-</code>+
  
 This call reads a character string (character codes only) from the keyboard.  This call reads a character string (character codes only) from the keyboard. 
Line 101: Line 63:
  
 Refer to the //DosRead// Family API Considerations for differences between DOS and OS/2 node when reading from a handle opened to the CON device.  Refer to the //DosRead// Family API Considerations for differences between DOS and OS/2 node when reading from a handle opened to the CON device. 
 +
 +=== C bindings ===
 +
 +<code c>
 +typedef struct _STRINGINBUF {   /* kbsi */
 +  USHORT cb;                    /* input buffer length */
 +  USHORT cchIn;                 /* received input length */
 +} STRINGINBUF;
 +
 +#define INCL_KBD
 +
 +USHORT  rc = KbdStringIn(CharBuffer, Length, IOWait, KbdHandle);
 +
 +PCH              CharBuffer;    /* Char string buffer */
 +PSTRINGINBUF     Length;        /* Length table */
 +USHORT           IOWait;        /* Indicate if wait for char */
 +HKBD             KbdHandle;     /* Keyboard handle */
 +
 +USHORT           rc;            /* return code */
 +</code>
 +
 +=== MASM bindings ===
 +
 +<code asm>
 +STRINGINBUF struc
 +  kbsi_cb    dw  ? ;input buffer length
 +  kbsi_cchIn dw  ? ;received input length
 +STRINGINBUF ends
 +
 +EXTRN  KbdStringIn:FAR
 +INCL_KBD            EQU 1
 +
 +PUSH@  OTHER   CharBuffer    ;Char string buffer
 +PUSH@  OTHER   Length        ;Length table
 +PUSH   WORD    IOWait        ;Indicate if wait for char
 +PUSH   WORD    KbdHandle     ;Keyboard handle
 +CALL   KbdStringIn
 +
 +Returns WORD
 +</code>