2001-04-10 23:21:43 +00:00
|
|
|
/*
|
|
|
|
* Path and directory definitions
|
|
|
|
*
|
|
|
|
* Copyright 2000 Francois Gouget.
|
2002-03-09 23:29:33 +00:00
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
2006-05-18 12:49:52 +00:00
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
|
2001-04-10 23:21:43 +00:00
|
|
|
*/
|
|
|
|
#ifndef __WINE_SYS_UTIME_H
|
|
|
|
#define __WINE_SYS_UTIME_H
|
|
|
|
|
2019-08-09 15:32:04 +00:00
|
|
|
#include <corecrt.h>
|
2007-02-20 08:35:41 +00:00
|
|
|
|
2008-12-11 21:37:34 +00:00
|
|
|
#include <pshpack8.h>
|
2001-04-10 23:21:43 +00:00
|
|
|
|
2004-06-25 01:19:15 +00:00
|
|
|
#ifndef _UTIMBUF_DEFINED
|
|
|
|
#define _UTIMBUF_DEFINED
|
2001-04-10 23:21:43 +00:00
|
|
|
struct _utimbuf
|
|
|
|
{
|
2004-06-25 01:19:15 +00:00
|
|
|
time_t actime;
|
|
|
|
time_t modtime;
|
2001-04-10 23:21:43 +00:00
|
|
|
};
|
2009-05-23 09:10:05 +00:00
|
|
|
struct __utimbuf32
|
|
|
|
{
|
|
|
|
__time32_t actime;
|
|
|
|
__time32_t modtime;
|
|
|
|
};
|
|
|
|
struct __utimbuf64
|
|
|
|
{
|
|
|
|
__time64_t actime;
|
|
|
|
__time64_t modtime;
|
|
|
|
};
|
2004-06-25 01:19:15 +00:00
|
|
|
#endif /* _UTIMBUF_DEFINED */
|
2001-04-10 23:21:43 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2020-11-24 17:50:06 +00:00
|
|
|
_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*);
|
2009-05-23 09:10:05 +00:00
|
|
|
|
|
|
|
#ifdef _USE_32BIT_TIME_T
|
|
|
|
static inline int _futime(int fd, struct _utimbuf *buf) { return _futime32(fd, (struct __utimbuf32*)buf); }
|
|
|
|
static inline int _utime(const char *s, struct _utimbuf *buf) { return _utime32(s, (struct __utimbuf32*)buf); }
|
|
|
|
static inline int _wutime(const wchar_t *s, struct _utimbuf *buf) { return _wutime32(s, (struct __utimbuf32*)buf); }
|
|
|
|
#else
|
|
|
|
static inline int _futime(int fd, struct _utimbuf *buf) { return _futime64(fd, (struct __utimbuf64*)buf); }
|
|
|
|
static inline int _utime(const char *s, struct _utimbuf *buf) { return _utime64(s, (struct __utimbuf64*)buf); }
|
|
|
|
static inline int _wutime(const wchar_t *s, struct _utimbuf *buf) { return _wutime64(s, (struct __utimbuf64*)buf); }
|
|
|
|
#endif
|
2001-04-10 23:21:43 +00:00
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
|
|
#define utimbuf _utimbuf
|
|
|
|
|
2003-01-11 22:49:54 +00:00
|
|
|
static inline int utime(const char* path, struct _utimbuf* buf) { return _utime(path, buf); }
|
2001-04-10 23:21:43 +00:00
|
|
|
|
2007-02-20 08:35:41 +00:00
|
|
|
#include <poppack.h>
|
|
|
|
|
2001-04-10 23:21:43 +00:00
|
|
|
#endif /* __WINE_SYS_UTIME_H */
|