en:docs:fapi:kbdderegister

Differences

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

Link to this comparison view

Next revision
Previous revision
en:docs:fapi:kbdderegister [2021/10/06 13:18] – created prokusheven:docs:fapi:kbdderegister [2021/11/04 13:24] (current) prokushev
Line 1: Line 1:
 +{{page>en:templates:fapiint}}
 +
 +====== KbdDeRegister ======
 +
 This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the [[KbdRegister]] may issue KbdDeRegister. This call deregisters a keyboard subsystem previously registered within a session. Only the process that issued the [[KbdRegister]] may issue KbdDeRegister.
  
-==Syntax==+===== Syntax ===== 
 +<code c>
  KbdDeRegister ()  KbdDeRegister ()
 +</code>
  
-==Return Code== +===== Return Code =====
-;rc (USHORT) - return:Return code descriptions are: +
-* 0 NO_ERROR +
-* 411 ERROR_KBD_DEREGISTER +
-* 464 ERROR_KBD_DETACHED +
-* 504 ERROR_KBD_EXTENDED_SG+
  
-==Bindings== +rc (USHORT) - return:Return code descriptions are: 
-===C=== + 
-<PRE>+  * 0 NO_ERROR 
 +  * 411 ERROR_KBD_DEREGISTER 
 +  * 464 ERROR_KBD_DETACHED 
 +  * 504 ERROR_KBD_EXTENDED_SG 
 + 
 +===== Bindings ===== 
 + 
 +====C==== 
 +<code c>
 #define INCL_KBD #define INCL_KBD
  
Line 19: Line 28:
  
 USHORT  rc;            /* return code */ USHORT  rc;            /* return code */
-</PRE>+</code>
  
-===MASM=== +====MASM==== 
-<PRE>+<code asm>
 EXTRN KbdDeRegister:FAR EXTRN KbdDeRegister:FAR
 INCL_KBD            EQU 1 INCL_KBD            EQU 1
Line 29: Line 38:
  
 Returns WORD Returns WORD
-</PRE>+</code> 
 + 
 +{{page>en:templates:fapi}}
  
-[[Category:Kbd]]