2 *sys\utime.h - definitions/declarations for utime()
4 * Copyright (c) 1985-1988, Microsoft Corporation. All rights reserved.
7 * This file defines the structure used by the utime routine to set
8 * new file access and modification times. NOTE - MS-DOS
9 * does not recognize access time, so this field will
10 * always be ignored and the modification time field will be
11 * used to set the new time.
13 *******************************************************************************/
16 #ifndef NO_EXT_KEYS /* extensions enabled */
18 #else /* extensions not enabled */
20 #endif /* NO_EXT_KEYS */
22 #ifndef _TIME_T_DEFINED
24 #define _TIME_T_DEFINED
27 /* define struct used by utime() function */
29 #ifndef _UTIMBUF_DEFINED
31 time_t actime; /* access time */
32 time_t modtime; /* modification time */
34 #define _UTIMBUF_DEFINED
38 /* function prototypes */
40 int CDECL utime(char *, struct utimbuf *);