ReactOS 0.4.15-dev-7953-g1f49173
utime.h File Reference
#include <crtdefs.h>
Include dependency graph for utime.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  _utimbuf
 
struct  __utimbuf32
 
struct  utimbuf
 
struct  utimbuf32
 

Macros

#define _UTIMBUF_DEFINED
 

Functions

_CRTIMP int __cdecl _utime (_In_z_ const char *_Filename, _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)
 
__CRT_INLINE int __cdecl utime (const char *_Filename, struct utimbuf *_Utimbuf)
 

Macro Definition Documentation

◆ _UTIMBUF_DEFINED

#define _UTIMBUF_DEFINED

This file has no copyright assigned and is placed in the Public Domain. This file is part of the w64 mingw-runtime package. No warranty is given; refer to the file DISCLAIMER within this package.

Definition at line 22 of file utime.h.

Function Documentation

◆ _futime()

_CRTIMP int __cdecl _futime ( _In_ int  _FileDes,
_In_opt_ struct _utimbuf _Time 
)

Referenced by _tutime().

◆ _futime32()

_CRTIMP int __cdecl _futime32 ( _In_ int  _FileDes,
_In_opt_ struct __utimbuf32 _Time 
)

◆ _utime()

_CRTIMP int __cdecl _utime ( _In_z_ const char _Filename,
_In_opt_ struct _utimbuf _Time 
)

Referenced by utime().

◆ _utime32()

_CRTIMP int __cdecl _utime32 ( _In_z_ const char _Filename,
_In_opt_ struct __utimbuf32 _Time 
)

◆ _wutime()

_CRTIMP int __cdecl _wutime ( _In_z_ const wchar_t _Filename,
_In_opt_ struct _utimbuf _Time 
)

◆ _wutime32()

_CRTIMP int __cdecl _wutime32 ( _In_z_ const wchar_t _Filename,
_In_opt_ struct __utimbuf32 _Time 
)

◆ utime()

__CRT_INLINE int __cdecl utime ( const char _Filename,
struct utimbuf _Utimbuf 
)

Definition at line 136 of file utime.h.

136 {
137 return _utime(_Filename,(struct _utimbuf *)_Utimbuf);
138}
Definition: utime.h:24
_CRTIMP int __cdecl _utime(_In_z_ const char *_Filename, _In_opt_ struct _utimbuf *_Time)