utime.h 1.64 KB
Newer Older
1 2 3 4
/*
 * Path and directory definitions
 *
 * Copyright 2000 Francois Gouget.
5 6 7 8 9 10 11 12 13 14 15 16 17
 *
 * 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
18
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19 20 21
 */
#ifndef __WINE_SYS_UTIME_H
#define __WINE_SYS_UTIME_H
22
#ifndef __WINE_USE_MSVCRT
23
#define __WINE_USE_MSVCRT
24
#endif
25

26 27
#include <pshpack8.h>

28 29
#ifndef _WCHAR_T_DEFINED
#define _WCHAR_T_DEFINED
30
#ifndef __cplusplus
31
typedef unsigned short wchar_t;
32 33
#endif
#endif
34

35 36 37
#ifndef _TIME_T_DEFINED
typedef long time_t;
#define _TIME_T_DEFINED
38
#endif
39

40 41
#ifndef _UTIMBUF_DEFINED
#define _UTIMBUF_DEFINED
42 43
struct _utimbuf
{
44 45
    time_t actime;
    time_t modtime;
46
};
47
#endif /* _UTIMBUF_DEFINED */
48 49 50 51 52 53 54 55

#ifdef __cplusplus
extern "C" {
#endif

int         _futime(int,struct _utimbuf*);
int         _utime(const char*,struct _utimbuf*);

56
int         _wutime(const wchar_t*,struct _utimbuf*);
57 58 59 60 61 62 63 64

#ifdef __cplusplus
}
#endif


#define utimbuf _utimbuf

65
static inline int utime(const char* path, struct _utimbuf* buf) { return _utime(path, buf); }
66

67 68
#include <poppack.h>

69
#endif /* __WINE_SYS_UTIME_H */