Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:kbd:synch [2014/05/16 18:41] – created valerius | en:ibm:prcp:kbd:synch [2016/09/15 03:06] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdSynch ==== | ==== KbdSynch ==== | ||
- | **Bindings**: | + | **Bindings**: |
- | + | ||
- | **C**: | + | |
- | <code c> | + | |
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | **MASM**: | + | |
- | <code asm> | + | |
- | EXTRN KbdSynch: | + | |
- | INCL_KBD | + | |
- | + | ||
- | PUSH | + | |
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
This call synchronizes access from a keyboard subsystem to the keyboard device driver. | This call synchronizes access from a keyboard subsystem to the keyboard device driver. | ||
Line 45: | Line 23: | ||
// | // | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN KbdSynch: | ||
+ | INCL_KBD | ||
+ | |||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||
+ | |||