#include <corecrt.h>
#include <pshpack8.h>
#include <poppack.h>
Go to the source code of this file.
|
| _ACRTIMP int __cdecl | _futime32 (int, struct __utimbuf32 *) |
| |
| _ACRTIMP int __cdecl | _futime64 (int, struct __utimbuf64 *) |
| |
| _ACRTIMP int __cdecl | _utime32 (const char *, struct __utimbuf32 *) |
| |
| _ACRTIMP int __cdecl | _utime64 (const char *, struct __utimbuf64 *) |
| |
| _ACRTIMP int __cdecl | _wutime32 (const wchar_t *, struct __utimbuf32 *) |
| |
| _ACRTIMP int __cdecl | _wutime64 (const wchar_t *, struct __utimbuf64 *) |
| |
| static int | _futime (int fd, struct _utimbuf *buf) |
| |
| static int | _utime (const char *s, struct _utimbuf *buf) |
| |
| static int | _wutime (const wchar_t *s, struct _utimbuf *buf) |
| |
| static int | utime (const char *path, struct _utimbuf *buf) |
| |
◆ _UTIMBUF_DEFINED
◆ utimbuf
◆ _futime()
Definition at line 62 of file utime.h.
_ACRTIMP int __cdecl _futime64(int, struct __utimbuf64 *)
GLenum GLuint GLenum GLsizei const GLchar * buf
Referenced by _tutime().
◆ _futime32()
Definition at line 2101 of file file.c.
2102{
2104 {
2107 t64.modtime =
t->modtime;
2109 }
2110 else
2112}
int CDECL _futime64(int fd, struct __utimbuf64 *t)
◆ _futime64()
Definition at line 2072 of file file.c.
2073{
2076
2078 {
2080 wt = at;
2081 }
2082 else
2083 {
2086 }
2087
2089 {
2092 return -1 ;
2093 }
2095 return 0;
2096}
BOOL WINAPI SetFileTime(IN HANDLE hFile, CONST FILETIME *lpCreationTime OPTIONAL, CONST FILETIME *lpLastAccessTime OPTIONAL, CONST FILETIME *lpLastWriteTime OPTIONAL)
static void time_to_filetime(__time64_t time, FILETIME *ft)
static ioinfo * get_ioinfo(int fd)
static void release_ioinfo(ioinfo *info)
_ACRTIMP __time64_t __cdecl _time64(__time64_t *)
DWORD WINAPI GetLastError(void)
Referenced by _futime(), _futime32(), _utime64(), and _wutime64().
◆ _utime()
Definition at line 63 of file utime.h.
_ACRTIMP int __cdecl _utime64(const char *, struct __utimbuf64 *)
Referenced by utime().
◆ _utime32()
Definition at line 3513 of file file.c.
3514{
3516 {
3519 t64.modtime =
t->modtime;
3521 }
3522 else
3524}
int CDECL _utime64(const char *path, struct __utimbuf64 *t)
◆ _utime64()
Definition at line 3497 of file file.c.
3498{
3500
3502 {
3505 return retVal;
3506 }
3507 return -1;
3508}
int WINAPIV _open(const char *path, int flags,...)
Referenced by _utime(), and _utime32().
◆ _wutime()
Definition at line 64 of file utime.h.
_ACRTIMP int __cdecl _wutime64(const wchar_t *, struct __utimbuf64 *)
◆ _wutime32()
Definition at line 3545 of file file.c.
3546{
3548 {
3551 t64.modtime =
t->modtime;
3553 }
3554 else
3556}
int CDECL _wutime64(const wchar_t *path, struct __utimbuf64 *t)
◆ _wutime64()
Definition at line 3529 of file file.c.
3530{
3532
3534 {
3537 return retVal;
3538 }
3539 return -1;
3540}
int WINAPIV _wopen(const wchar_t *path, int flags,...)
Referenced by _wutime(), and _wutime32().
◆ utime()
Definition at line 74 of file utime.h.
static int _utime(const char *s, struct _utimbuf *buf)