Differences
This shows you the differences between two versions of the page.
Next revision | Previous revision | ||
en:ibm:prcp:kbd:dereg [2014/05/13 14:01] – external edit 127.0.0.1 | en:ibm:prcp:kbd:dereg [2016/09/15 02:27] (current) – valerius | ||
---|---|---|---|
Line 1: | Line 1: | ||
==== KbdDeRegister ==== | ==== KbdDeRegister ==== | ||
- | **Bindings**: | + | **Bindings**: |
+ | |||
+ | This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the // | ||
+ | |||
+ | KbdDeRegister ( ) | ||
+ | |||
+ | //rc// (**USHORT**) - return | ||
+ | Return code descriptions are: | ||
+ | |||
+ | |0 |NO_ERROR | | ||
+ | |411 |ERROR_KBD_DEREGISTER | | ||
+ | |464 |ERROR_KBD_DETACHED | | ||
+ | |504 |ERROR_KBD_EXTENDED_SG | | ||
+ | |||
+ | === C bindings === | ||
- | C: | ||
<code c> | <code c> | ||
#define INCL_KBD | #define INCL_KBD | ||
Line 12: | Line 25: | ||
</ | </ | ||
- | MASM: | + | === MASM bindings === |
<code asm> | <code asm> | ||
EXTRN KbdDeRegister: | EXTRN KbdDeRegister: | ||
Line 21: | Line 35: | ||
Returns WORD | Returns WORD | ||
</ | </ | ||
- | |||
- | This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the KbdRegister may issue KbdDeRegister. | ||
- | |||
- | KbdDeRegister ( ) | ||
- | |||
- | //rc// (**USHORT**) - return | ||
- | Return code descriptions are: | ||
- | |||
- | |0 |NO_ERROR | | ||
- | |411 |ERROR_KBD_DEREGISTER | | ||
- | |464 |ERROR_KBD_DETACHED | | ||
- | |504 |ERROR_KBD_EXTENDED_SG | | ||