* Annotate sys/utime.h.

svn path=/trunk/; revision=58929
This commit is contained in:
Amine Khaldi 2013-05-04 20:42:43 +00:00
parent 074fd31218
commit 148e43e691

View file

@ -49,19 +49,75 @@ extern "C" {
__time32_t modtime; __time32_t modtime;
}; };
#endif #endif
#endif /* !_UTIMBUF_DEFINED */ #endif /* !_UTIMBUF_DEFINED */
_CRTIMP int __cdecl _utime(const char *_Filename,struct _utimbuf *_Time); _CRTIMP
_CRTIMP int __cdecl _utime32(const char *_Filename,struct __utimbuf32 *_Time); int
_CRTIMP int __cdecl _futime(int _FileDes,struct _utimbuf *_Time); __cdecl
_CRTIMP int __cdecl _futime32(int _FileDes,struct __utimbuf32 *_Time); _utime(
_CRTIMP int __cdecl _wutime(const wchar_t *_Filename,struct _utimbuf *_Time); _In_z_ const char *_Filename,
_CRTIMP int __cdecl _wutime32(const wchar_t *_Filename,struct __utimbuf32 *_Time); _In_opt_ struct _utimbuf *_Time);
_CRTIMP
int
__cdecl
_utime32(
_In_z_ const char *_Filename,
_In_opt_ struct __utimbuf32 *_Time);
_CRTIMP
int
__cdecl
_futime(
_In_ int _FileDes,
_In_opt_ struct _utimbuf *_Time);
_CRTIMP
int
__cdecl
_futime32(
_In_ int _FileDes,
_In_opt_ struct __utimbuf32 *_Time);
_CRTIMP
int
__cdecl
_wutime(
_In_z_ const wchar_t *_Filename,
_In_opt_ struct _utimbuf *_Time);
_CRTIMP
int
__cdecl
_wutime32(
_In_z_ const wchar_t *_Filename,
_In_opt_ struct __utimbuf32 *_Time);
#if _INTEGRAL_MAX_BITS >= 64 #if _INTEGRAL_MAX_BITS >= 64
_CRTIMP int __cdecl _utime64(const char *_Filename,struct __utimbuf64 *_Time);
_CRTIMP int __cdecl _futime64(int _FileDes,struct __utimbuf64 *_Time); _CRTIMP
_CRTIMP int __cdecl _wutime64(const wchar_t *_Filename,struct __utimbuf64 *_Time); int
#endif __cdecl
_utime64(
_In_z_ const char *_Filename,
_In_opt_ struct __utimbuf64 *_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);
#endif /* _INTEGRAL_MAX_BITS >= 64 */
#ifndef RC_INVOKED #ifndef RC_INVOKED
#ifdef _USE_32BIT_TIME_T #ifdef _USE_32BIT_TIME_T