Differences
This shows you the differences between two versions of the page.
en:ibm:prcp:kbd:setcustxt [2014/05/16 19:26] – created valerius | en:ibm:prcp:kbd:setcustxt [2016/09/15 02:53] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdSetCustXt ==== | ==== KbdSetCustXt ==== | ||
- | **Bindings**: | + | **Bindings**: |
- | + | ||
- | **C**: | + | |
- | <code c> | + | |
- | #define INCL_KBD | + | |
- | + | ||
- | USHORT | + | |
- | + | ||
- | PUSHORT | + | |
- | HKBD | + | |
- | + | ||
- | USHORT | + | |
- | </ | + | |
- | + | ||
- | **MASM**: | + | |
- | <code asm> | + | |
- | EXTRN KbdSetCustXt: | + | |
- | INCL_KBD | + | |
- | + | ||
- | PUSH@ WORD CodePage | + | |
- | PUSH | + | |
- | CALL | + | |
- | + | ||
- | Returns WORD | + | |
- | </ | + | |
This call installs, on the specified handle, the translate table which this call points to. This translate table affects only this handle. | This call installs, on the specified handle, the translate table which this call points to. This translate table affects only this handle. | ||
Line 54: | Line 30: | ||
// | // | ||
+ | |||
+ | === C bindings === | ||
+ | |||
+ | <code c> | ||
+ | #define INCL_KBD | ||
+ | |||
+ | USHORT | ||
+ | |||
+ | PUSHORT | ||
+ | HKBD | ||
+ | |||
+ | USHORT | ||
+ | </ | ||
+ | |||
+ | === MASM bindings === | ||
+ | |||
+ | <code asm> | ||
+ | EXTRN KbdSetCustXt: | ||
+ | INCL_KBD | ||
+ | |||
+ | PUSH@ WORD CodePage | ||
+ | PUSH | ||
+ | CALL | ||
+ | |||
+ | Returns WORD | ||
+ | </ | ||