Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
en:ibm:prcp:kbd:setfgnd [2014/05/16 18:47] – valerius | en:ibm:prcp:kbd:setfgnd [2016/09/15 02:56] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdSetFgnd ==== | ==== KbdSetFgnd ==== | ||
- | **Bindings**: | + | **Bindings**: |
- | + | ||
- | **C**: | + | |
- | <code c> | + | |
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | **MASM**: | + | |
- | <code asm> | + | |
- | EXTRN KbdSetFgnd: | + | |
- | INCL_KBD | + | |
- | + | ||
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
This call raises the priority of the foreground keyboard' | This call raises the priority of the foreground keyboard' | ||
Line 39: | Line 20: | ||
This function should only be issued by a Keyboard Subsystem during // | This function should only be issued by a Keyboard Subsystem during // | ||
processing. | processing. | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN KbdSetFgnd: | ||
+ | INCL_KBD | ||
+ | |||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||
+ | |||