home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 463.lha / Date_routines / LIST0618.C < prev    next >
C/C++ Source or Header  |  1991-01-04  |  426b  |  23 lines

  1. /*****
  2.                               packstime()
  3.  
  4.       This function takes the system time and converts it to a packed
  5.    DOS value for the date.
  6.  
  7.    Argument list:    void
  8.  
  9.    Return value:     unsigned int      the time as a DOS-packed number
  10.  
  11. *****/
  12.  
  13. #include <dos.h>
  14.  
  15. unsigned int packstime(void)
  16. {
  17.    union REGS ireg;
  18.  
  19.    ireg.h.ah = 0x2c;
  20.    intdos(&ireg, &ireg);
  21.    return packtime(ireg.h.dh, ireg.h.cl, ireg.h.ch);
  22. }
  23.