Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
en:ibm:prcp:kbd:strin [2014/05/16 19:19] – valerius | en:ibm:prcp:kbd:strin [2016/09/15 03:00] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KndStringIn ==== | ==== KndStringIn ==== | ||
- | **Bindings**: | + | **Bindings**: |
- | + | ||
- | **C**: | + | |
- | <code c> | + | |
- | typedef struct _STRINGINBUF { /* kbsi */ | + | |
- | USHORT cb; /* input buffer length */ | + | |
- | USHORT cchIn; | + | |
- | } STRINGINBUF; | + | |
- | + | ||
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | PCH CharBuffer; | + | |
- | PSTRINGINBUF | + | |
- | USHORT | + | |
- | HKBD | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | **MASM**: | + | |
- | <code asm> | + | |
- | STRINGINBUF struc | + | |
- | kbsi_cb | + | |
- | kbsi_cchIn dw ? ;received input length | + | |
- | STRINGINBUF ends | + | |
- | + | ||
- | EXTRN KbdStringIn: | + | |
- | INCL_KBD | + | |
- | + | ||
- | PUSH@ OTHER | + | |
- | PUSH@ OTHER | + | |
- | PUSH | + | |
- | PUSH | + | |
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
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 61: | Line 23: | ||
^Value ^Definition ^ | ^Value ^Definition ^ | ||
- | |0 |Wait. In Binary input mode, the requestor waits until CharBuffer is full. In ASCII input mode, the requestor waits until a carriage return is pressed. | | + | |0 |Wait. In Binary input mode, the requestor waits until //CharBuffer// is full. In ASCII input mode, the requestor waits until a carriage return is pressed. | |
- | |1 |No wait. The requestor gets an immediate return if no characters are available. If characters are available, KbdStringIn returns immediately with as many characters as are available (up to the maximum). No wait is not supported in ASCII input mode. | | + | |1 |No wait. The requestor gets an immediate return if no characters are available. If characters are available, |
// | // | ||
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; | ||
+ | } STRINGINBUF; | ||
+ | |||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PCH CharBuffer; | ||
+ | PSTRINGINBUF | ||
+ | USHORT | ||
+ | HKBD | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | STRINGINBUF struc | ||
+ | kbsi_cb | ||
+ | kbsi_cchIn dw ? ;received input length | ||
+ | STRINGINBUF ends | ||
+ | |||
+ | EXTRN KbdStringIn: | ||
+ | INCL_KBD | ||
+ | |||
+ | PUSH@ OTHER | ||
+ | PUSH@ OTHER | ||
+ | PUSH | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||