Annotation of os232sdk/c386/include/sys/utime.h, revision 1.1.1.1

1.1       root        1: /***
                      2: *sys\utime.h - definitions/declarations for utime()
                      3: *
                      4: *      Copyright (c) 1985-1990, Microsoft Corporation.  All rights reserved.
                      5: *
                      6: *Purpose:
                      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.
                     12: *
                     13: ****/
                     14: 
                     15: 
                     16: #ifndef _TIME_T_DEFINED
                     17: typedef long time_t;
                     18: #define _TIME_T_DEFINED
                     19: #endif
                     20: 
                     21: /* define struct used by utime() function */
                     22: 
                     23: #ifndef _UTIMBUF_DEFINED
                     24: struct utimbuf {
                     25:        time_t actime;          /* access time */
                     26:        time_t modtime;         /* modification time */
                     27:        };
                     28: #define _UTIMBUF_DEFINED
                     29: #endif
                     30: 
                     31: 
                     32: /* function prototypes */
                     33: 
                     34: int _cdecl utime(char *, struct utimbuf *);

unix.superglobalmegacorp.com

This archive runs on limited infrastructure. Preserving old code on modern bandwidth. Automated agents are requested to crawl responsibly.