VioDeRegister: Difference between revisions
Appearance
mNo edit summary |
mNo edit summary |
||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
This call deregisters a video subsystem previously registered within a session. | This call deregisters a video subsystem previously registered within a session. | ||
==Syntax== | ==Syntax== | ||
VioDeRegister ( ) | VioDeRegister () | ||
==Parameters== | ==Parameters== | ||
;rc (USHORT) - return:Return code descriptions are: | |||
*0 NO_ERROR | |||
*404 ERROR_VIO_DEREGISTER | |||
*430 ERROR_VIO_ILLEGAL_DURING_POPUP | |||
Return code descriptions are: | *465 ERROR_VIO_DETACHED | ||
* 0 | *494 ERROR_VIO_EXTENDED_SG | ||
* 404 | |||
* 430 | |||
* 465 | |||
* 494 | |||
==Remarks== | ==Remarks== | ||
VioDeRegister must be issued by the same process that issued the previous [[VioRegister]]. After VioDeRegister is issued, subsequent video calls are processed by the Base Video Subsystem. | VioDeRegister must be issued by the same process that issued the previous [[VioRegister]]. After VioDeRegister is issued, subsequent video calls are processed by the Base Video Subsystem. | ||
== | ==Bindings== | ||
===C | ===C=== | ||
<PRE> | <PRE> | ||
#define INCL_VIO | #define INCL_VIO | ||
USHORT rc = VioDeRegister(VOID); | USHORT rc = VioDeRegister(VOID); | ||
USHORT rc; /* return code */ | |||
USHORT | |||
</PRE> | </PRE> | ||
===MASM | ===MASM=== | ||
<PRE> | <PRE> | ||
EXTRN VioDeRegister:FAR | EXTRN VioDeRegister:FAR | ||
Line 38: | Line 33: | ||
Returns WORD | Returns WORD | ||
</PRE> | </PRE> | ||
[[Category:Vio]] | [[Category:Vio]] |
Latest revision as of 10:39, 10 March 2020
This call deregisters a video subsystem previously registered within a session.
Syntax
VioDeRegister ()
Parameters
- rc (USHORT) - return
- Return code descriptions are:
- 0 NO_ERROR
- 404 ERROR_VIO_DEREGISTER
- 430 ERROR_VIO_ILLEGAL_DURING_POPUP
- 465 ERROR_VIO_DETACHED
- 494 ERROR_VIO_EXTENDED_SG
Remarks
VioDeRegister must be issued by the same process that issued the previous VioRegister. After VioDeRegister is issued, subsequent video calls are processed by the Base Video Subsystem.
Bindings
C
#define INCL_VIO USHORT rc = VioDeRegister(VOID); USHORT rc; /* return code */
MASM
EXTRN VioDeRegister:FAR INCL_VIO EQU 1 CALL VioDeRegister Returns WORD