Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:ibm:prcp:kbd:close [2014/05/13 14:22] – valerius | en:ibm:prcp:kbd:close [2016/09/15 02:24] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdClose ==== | ==== KbdClose ==== | ||
- | Bindings: | + | Bindings: |
- | + | ||
- | C: | + | |
- | <code c> | + | |
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | HKBD | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | MASM: | + | |
- | <code asm> | + | |
- | EXTRN KbdClose: | + | |
- | INCL_KBD | + | |
- | + | ||
- | PUSH | + | |
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
This call closes the existing logical keyboard identified by the keyboard handle. | This call closes the existing logical keyboard identified by the keyboard handle. | ||
Line 49: | Line 27: | ||
* KbdClose Close still another logical keyboard handle. | * KbdClose Close still another logical keyboard handle. | ||
* KbdFreeFocus Give up the focus on handle 0. | * KbdFreeFocus Give up the focus on handle 0. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | HKBD | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN KbdClose: | ||
+ | INCL_KBD | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||