en:ibm:prcp:kbd:dereg

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
en:ibm:prcp:kbd:dereg [2014/05/13 14:32] valeriusen:ibm:prcp:kbd:dereg [2016/09/15 02:27] (current) valerius
Line 1: Line 1:
 ==== KbdDeRegister ==== ==== KbdDeRegister ====
  
-**Bindings**: +**Bindings**: [[dereg#C bindings|C]], [[dereg#MASM bindings|MASM]] 
 + 
 +This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the //[[en:ibm:prcp:kbd:reg|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 | 
 + 
 +=== C bindings ===
  
-C: 
 <code c> <code c>
 #define INCL_KBD #define INCL_KBD
Line 12: Line 25:
 </code> </code>
  
-MASM:+=== MASM bindings === 
 <code asm> <code asm>
 EXTRN KbdDeRegister:FAR EXTRN KbdDeRegister:FAR
Line 21: Line 35:
 Returns WORD Returns WORD
 </code> </code>
- 
-This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the //[[en:ibm:prcp:kbd:reg|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 |