home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_getcsw()
- ;
- ; Parms: <none>
- ;
- ; Purpose: Returns the status level from BYE-PC of caller
- ; currently on line.
- ;
- ; Return: caller status word (CSW)
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_getcsw
-
- __bye_getcsw PROC
-
- mov ah,15 ;AH=15 for get csw
- int BYE_VECT
- ret
-
- __bye_getcsw ENDP
- END
-