Atlas - UTIME.H

Home / ext / JunkDrawer / DOS / BuildTools / v4.0 / BLD / INC / SYS Lines: 1 | Size: 1021 bytes [Download] [Show on GitHub] [Search similar files] [Raw] [Raw (proxy)]
[FILE BEGIN]
1/*** 2*sys\utime.h - definitions/declarations for utime() 3* 4* Copyright (c) 1985-1988, 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 NO_EXT_KEYS /* extensions enabled */ 17 #define CDECL cdecl 18#else /* extensions not enabled */ 19 #define CDECL 20#endif /* NO_EXT_KEYS */ 21 22#ifndef _TIME_T_DEFINED 23typedef long time_t; 24#define _TIME_T_DEFINED 25#endif 26 27/* define struct used by utime() function */ 28 29#ifndef _UTIMBUF_DEFINED 30struct utimbuf { 31 time_t actime; /* access time */ 32 time_t modtime; /* modification time */ 33 }; 34#define _UTIMBUF_DEFINED 35#endif 36 37 38/* function prototypes */ 39 40int CDECL utime(char *, struct utimbuf *); 41
[FILE END]
(C) 2025 0x4248 (C) 2025 4248 Media and 4248 Systems, All part of 0x4248 See LICENCE files for more information. Not all files are by 0x4248 always check Licencing.