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

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