Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:kbd:freefocus [2014/05/13 14:29] – created valerius | en:ibm:prcp:kbd:freefocus [2016/09/15 02:32] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdFreeFocus ==== | ==== KbdFreeFocus ==== | ||
- | **Bindings**: | + | **Bindings**: |
- | + | ||
- | C: | + | |
- | <code c> | + | |
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | HKBD | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | MASM: | + | |
- | <code asm> | + | |
- | EXTRN KbdFreeFocus: | + | |
- | INCL_KBD | + | |
- | + | ||
- | PUSH | + | |
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
This call frees the logical-to-physical keyboard bond created by // | This call frees the logical-to-physical keyboard bond created by // | ||
Line 44: | Line 22: | ||
// | // | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | HKBD | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN KbdFreeFocus: | ||
+ | INCL_KBD | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||