TIP: Click on subject to list as thread! ANSI
echo: os2prog
to: Carlos Fernandez Sanz
from: Peter Fitzsimmons
date: 1996-10-26 02:15:40
subject: Time of last reboot

CFS>     How can I determine the time & date of the last system reboot?

 //By Gerry Rozema in 1991
 // msc 6, 16bit code
 #define INCL_NOPM
 #define INCL_DOS

 #include 
 #include 

 #include 

 void cdecl main(void)
 {
     SEL Global;
     SEL Local;
     GINFOSEG FAR *pgis;
     ULONG time;
     ULONG days;
     ULONG hours;
     ULONG minutes;
     ULONG seconds;


     DosGetInfoSeg(&Global, &Local);
     pgis = MAKEPGINFOSEG(Global);
     time = pgis->msecs;

     days = time / 1000L / 3600L / 24;
     time = time - (days * 1000L * 3600L * 24);
     hours = time / 1000L / 3600L;
     time = time - (hours * 1000L * 3600L);
     minutes = time / 1000L / 60L;
     time = time - (minutes * 1000L * 60);
     seconds = time / 1000L;

     printf("%ld days %ld hours %ld minutes %ld seconds\n",
                days, hours, minutes, seconds);
 }



--- Maximus/2 3.00
* Origin: Sol 3 * Toronto * V.32 * (905)858-8488 (1:259/414)
SEEN-BY: 50/99 270/101 620/243 625/160 711/401 409 410 413 430 808 809 934
SEEN-BY: 711/955 712/407 515 624 628 713/317 800/1
@PATH: 259/414 400 99 250/99 3615/50 396/1 270/101 712/515 711/808 934

SOURCE: echomail via fidonet.ozzmosis.com

Email questions or comments to sysop@ipingthereforeiam.com
All parts of this website painstakingly hand-crafted in the U.S.A.!
IPTIA BBS/MUD/Terminal/Game Server List, © 2025 IPTIA Consulting™.