home *** CD-ROM | disk | FTP | other *** search
- INCLUDE MODEL.INC
- ;
- ;---------------------------------------------------------------------------
- ; Function: int _bye_gettimer()
- ;
- ; Parms: void
- ;
- ; Purpose: Returns the number of minutes online for the caller
- ; since logon. This is reset each time 'set_timeon()'
- ; called.
- ;
- ; Return: number of minutes online since logged on.
- ;---------------------------------------------------------------------------
- ;
- PUBLIC __bye_gettimer
-
- __bye_gettimer PROC
-
- mov ah,18 ;AH=18 for get timer
- int BYE_VECT
- ret
-
- __bye_gettimer ENDP
- END
-