home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_gettimeon()
- ;
- ; Parms: void
- ;
- ; Purpose: Returns the time alloted for the caller to remain
- ; online for this call.
- ;
- ; Return: max time online for this call.
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_gettimeon
-
- __bye_gettimeon PROC
-
- mov ah,20 ;AH=20 for get timeon
- int BYE_VECT
- ret
-
- __bye_gettimeon ENDP
- END
-