home *** CD-ROM | disk | FTP | other *** search
/ Total Destruction / Total_Destruction.iso / addons / Lccwin32.exe / Lccwin32 / lccpub / include / sys / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1998-02-04  |  363 b   |  14 lines

  1. #ifndef _INC_UTIME
  2. #define _INC_UTIME
  3. #pragma pack(push,8)
  4. struct _utimbuf {
  5.     long actime;        /* access time */
  6.     long modtime;     /* modification time */
  7.     };
  8. #define utimbuf _utimbuf
  9. int _utime(const char *, struct _utimbuf *);
  10. int _futime(int, struct _utimbuf *);
  11. int _wutime(const short *, struct _utimbuf *);
  12. #pragma pack(pop)
  13. #endif    /* _INC_UTIME */
  14.