STLdoc
STLdocumentation
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros
Classes | Functions
utime.h File Reference
#include <corecrt.h>

Go to the source code of this file.

Classes

struct  _utimbuf
 
struct  __utimbuf32
 
struct  __utimbuf64
 

Functions

_ACRTIMP int __cdecl _utime32 (_In_z_ char const *_FileName, _In_opt_ struct __utimbuf32 *_Time)
 
_ACRTIMP int __cdecl _futime32 (_In_ int _FileHandle, _In_opt_ struct __utimbuf32 *_Time)
 
_ACRTIMP int __cdecl _wutime32 (_In_z_ wchar_t const *_FileName, _In_opt_ struct __utimbuf32 *_Time)
 
_ACRTIMP int __cdecl _utime64 (_In_z_ char const *_FileName, _In_opt_ struct __utimbuf64 *_Time)
 
_ACRTIMP int __cdecl _futime64 (_In_ int _FileHandle, _In_opt_ struct __utimbuf64 *_Time)
 
_ACRTIMP int __cdecl _wutime64 (_In_z_ wchar_t const *_FileName, _In_opt_ struct __utimbuf64 *_Time)
 
static __inline int __CRTDECL _utime (char const *const _FileName, struct _utimbuf *const _Time)
 
static __inline int __CRTDECL _futime (int const _FileHandle, struct _utimbuf *const _Time)
 
static __inline int __CRTDECL _wutime (wchar_t const *const _FileName, struct _utimbuf *const _Time)
 

Function Documentation

static __inline int __CRTDECL _futime ( int const  _FileHandle,
struct _utimbuf *const  _Time 
)
static
125  {
126  _STATIC_ASSERT(sizeof(struct _utimbuf) == sizeof(struct __utimbuf64));
127  return _futime64(_FileHandle, (struct __utimbuf64*)_Time);
128  }
Definition: utime.h:22
_STATIC_ASSERT(sizeof(unsigned int)<=_ALLOCA_S_MARKER_SIZE)
Definition: utime.h:35
_ACRTIMP int __cdecl _futime64(_In_ int _FileHandle, _In_opt_ struct __utimbuf64 *_Time)
_ACRTIMP int __cdecl _futime32 ( _In_ int  _FileHandle,
_In_opt_ struct __utimbuf32 _Time 
)
_ACRTIMP int __cdecl _futime64 ( _In_ int  _FileHandle,
_In_opt_ struct __utimbuf64 _Time 
)
static __inline int __CRTDECL _utime ( char const *const  _FileName,
struct _utimbuf *const  _Time 
)
static
119  {
120  _STATIC_ASSERT(sizeof(struct _utimbuf) == sizeof(struct __utimbuf64));
121  return _utime64(_FileName, (struct __utimbuf64*)_Time);
122  }
Definition: utime.h:22
_In_opt_z_ wchar_t const _In_opt_z_ wchar_t const * _FileName
Definition: corecrt.h:253
_ACRTIMP int __cdecl _utime64(_In_z_ char const *_FileName, _In_opt_ struct __utimbuf64 *_Time)
_STATIC_ASSERT(sizeof(unsigned int)<=_ALLOCA_S_MARKER_SIZE)
Definition: utime.h:35
_ACRTIMP int __cdecl _utime32 ( _In_z_ char const *  _FileName,
_In_opt_ struct __utimbuf32 _Time 
)
_ACRTIMP int __cdecl _utime64 ( _In_z_ char const *  _FileName,
_In_opt_ struct __utimbuf64 _Time 
)
static __inline int __CRTDECL _wutime ( wchar_t const *const  _FileName,
struct _utimbuf *const  _Time 
)
static
131  {
132  _STATIC_ASSERT(sizeof(struct _utimbuf) == sizeof(struct __utimbuf64));
133  return _wutime64(_FileName, (struct __utimbuf64*)_Time);
134  }
Definition: utime.h:22
_In_opt_z_ wchar_t const _In_opt_z_ wchar_t const * _FileName
Definition: corecrt.h:253
_STATIC_ASSERT(sizeof(unsigned int)<=_ALLOCA_S_MARKER_SIZE)
_ACRTIMP int __cdecl _wutime64(_In_z_ wchar_t const *_FileName, _In_opt_ struct __utimbuf64 *_Time)
Definition: utime.h:35
_ACRTIMP int __cdecl _wutime32 ( _In_z_ wchar_t const *  _FileName,
_In_opt_ struct __utimbuf32 _Time 
)
_ACRTIMP int __cdecl _wutime64 ( _In_z_ wchar_t const *  _FileName,
_In_opt_ struct __utimbuf64 _Time 
)