STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
utime.h
Go to the documentation of this file.
1 /***
2 *sys/utime.h - definitions/declarations for utime()
3 *
4 * Copyright (c) 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 * [Public]
14 *
15 ****/
16 
17 #pragma once
18 
19 #include <crtdefs.h>
20 
21 #ifndef _INC_UTIME
22 #define _INC_UTIME
23 
24 #if !defined (_WIN32)
25 #error ERROR: Only Win32 target supported!
26 #endif /* !defined (_WIN32) */
27 
28 #include <crtdefs.h>
29 
30 
31 #pragma pack(push,_CRT_PACKING)
32 
33 #ifdef __cplusplus
34 extern "C" {
35 #endif /* __cplusplus */
36 
37 #ifdef _CRTBLD
38 #include <cruntime.h>
39 #endif /* _CRTBLD */
40 
41 
42 /* Define _CRTIMP */
43 
44 #ifndef _CRTIMP
45 #if defined(CRTDLL) && defined(_CRTBLD)
46 #define _CRTIMP __declspec(dllexport)
47 #else /* CRTDLL && _CRTBLD */
48 #ifdef _DLL
49 #define _CRTIMP __declspec(dllimport)
50 #else /* _DLL */
51 #define _CRTIMP
52 #endif /* _DLL */
53 #endif /* CRTDLL && _CRTBLD */
54 #endif /* _CRTIMP */
55 
56 
57 #ifndef _WCHAR_T_DEFINED
58 typedef unsigned short wchar_t;
59 #define _WCHAR_T_DEFINED
60 #endif /* _WCHAR_T_DEFINED */
61 
62 #if !defined (_W64)
63 #if !defined (__midl) && (defined (_X86_) || defined (_M_IX86))
64 #define _W64 __w64
65 #else /* !defined (__midl) && (defined (_X86_) || defined (_M_IX86)) */
66 #define _W64
67 #endif /* !defined (__midl) && (defined (_X86_) || defined (_M_IX86)) */
68 #endif /* !defined (_W64) */
69 
70 #ifndef _TIME32_T_DEFINED
71 typedef _W64 long __time32_t; /* 32-bit time value */
72 #define _TIME32_T_DEFINED
73 #endif /* _TIME32_T_DEFINED */
74 
75 #ifndef _TIME64_T_DEFINED
76 typedef __int64 __time64_t; /* 64-bit time value */
77 #define _TIME64_T_DEFINED
78 #endif /* _TIME64_T_DEFINED */
79 
80 #ifndef _TIME_T_DEFINED
81 #ifdef _USE_32BIT_TIME_T
82 typedef __time32_t time_t; /* time value */
83 #else /* _USE_32BIT_TIME_T */
84 typedef __time64_t time_t; /* time value */
85 #endif /* _USE_32BIT_TIME_T */
86 #define _TIME_T_DEFINED /* avoid multiple def's of time_t */
87 #endif /* _TIME_T_DEFINED */
88 
89 /* define struct used by _utime() function */
90 
91 #ifndef _UTIMBUF_DEFINED
92 
93 struct _utimbuf {
94  time_t actime; /* access time */
95  time_t modtime; /* modification time */
96  };
97 
98 struct __utimbuf32 {
99  __time32_t actime; /* access time */
100  __time32_t modtime; /* modification time */
101  };
102 
103 struct __utimbuf64 {
104  __time64_t actime; /* access time */
105  __time64_t modtime; /* modification time */
106  };
107 
108 #if !__STDC__
109 /* Non-ANSI name for compatibility */
110 struct utimbuf {
111  time_t actime; /* access time */
112  time_t modtime; /* modification time */
113  };
114 
115 struct utimbuf32 {
116  __time32_t actime; /* access time */
117  __time32_t modtime; /* modification time */
118  };
119 
120 #endif /* !__STDC__ */
121 
122 #define _UTIMBUF_DEFINED
123 #endif /* _UTIMBUF_DEFINED */
124 
125 
126 /* Function Prototypes */
127 
128 _CRTIMP int __cdecl _utime32(_In_z_ const char * _Filename, _In_opt_ struct __utimbuf32 * _Time);
129 
130 _CRTIMP int __cdecl _futime32(_In_ int _FileDes, _In_opt_ struct __utimbuf32 * _Time);
131 
132 /* Wide Function Prototypes */
133 _CRTIMP int __cdecl _wutime32(_In_z_ const wchar_t * _Filename, _In_opt_ struct __utimbuf32 * _Time);
134 
135 _CRTIMP int __cdecl _utime64(_In_z_ const char * _Filename, _In_opt_ struct __utimbuf64 * _Time);
136 _CRTIMP int __cdecl _futime64(_In_ int _FileDes, _In_opt_ struct __utimbuf64 * _Time);
137 _CRTIMP int __cdecl _wutime64(_In_z_ const wchar_t * _Filename, _In_opt_ struct __utimbuf64 * _Time);
138 
139 #if !defined (RC_INVOKED) && !defined (__midl)
140 #include <sys/utime.inl>
141 #endif /* !defined (RC_INVOKED) && !defined (__midl) */
142 
143 #ifdef __cplusplus
144 }
145 #endif /* __cplusplus */
146 
147 #pragma pack(pop)
148 
149 #endif /* _INC_UTIME */
#define _CRTIMP
Definition: utime.h:51
Definition: utime.h:115
_CRTIMP int __cdecl _wutime32(_In_z_ const wchar_t *_Filename, _In_opt_ struct __utimbuf32 *_Time)
Definition: utime.h:93
__time64_t time_t
Definition: utime.h:84
_CRTIMP int __cdecl _utime64(_In_z_ const char *_Filename, _In_opt_ struct __utimbuf64 *_Time)
_CRTIMP int __cdecl _utime32(_In_z_ const char *_Filename, _In_opt_ struct __utimbuf32 *_Time)
_CRTIMP int __cdecl _futime64(_In_ int _FileDes, _In_opt_ struct __utimbuf64 *_Time)
_CRTIMP int __cdecl _wutime64(_In_z_ const wchar_t *_Filename, _In_opt_ struct __utimbuf64 *_Time)
Definition: utime.h:98
_CRTIMP int __cdecl _futime32(_In_ int _FileDes, _In_opt_ struct __utimbuf32 *_Time)
__time64_t actime
Definition: utime.h:104
Definition: utime.h:110
__time32_t modtime
Definition: utime.h:100
#define _In_z_
Definition: sal.h:319
time_t actime
Definition: utime.h:94
#define _In_
Definition: sal.h:314
time_t actime
Definition: utime.h:111
#define _In_opt_
Definition: sal.h:315
__time64_t modtime
Definition: utime.h:105
_W64 long __time32_t
Definition: utime.h:71
__time32_t actime
Definition: utime.h:99
time_t modtime
Definition: utime.h:95
time_t modtime
Definition: utime.h:112
_In_z_ const char * _Filename
Definition: process.h:211
__time32_t actime
Definition: utime.h:116
#define _W64
Definition: utime.h:66
__int64 __time64_t
Definition: utime.h:76
unsigned short wchar_t
Definition: utime.h:58
Definition: utime.h:103
__time32_t modtime
Definition: utime.h:117