Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

34 lines
405 B

  1. /*++
  2. Copyright (c) 1989-1996 Microsoft Corporation
  3. Module Name:
  4. utime.h
  5. Abstract:
  6. This module contains the utimbuf structure described in section 5.6.6.2
  7. of IEEE P1003.1/Draft 13.
  8. --*/
  9. #ifndef _UTIME_
  10. #define _UTIME_
  11. #include <types.h>
  12. #ifdef __cplusplus
  13. extern "C" {
  14. #endif
  15. struct utimbuf {
  16. time_t actime;
  17. time_t modtime;
  18. };
  19. #ifdef __cplusplus
  20. }
  21. #endif
  22. #endif /* _UTIME_ */