DCL 3.7.4
Loading...
Searching...
No Matches
_utime.cpp
Go to the documentation of this file.
1
2#include <dcl/Config.h>
3
4#ifndef __WINNT__
5
6#include <errno.h> // errno
7#if defined(_AIX) || defined(__sun__)
8 #include <alloca.h>
9#endif
10#include <stdlib.h> // alloca
11#include <dcl/_utime.h>
12#include <dcl/Object.h> // __T(str)
13#include <dcl/String.h>
14#include "__strumbs.h"
15
16#if __DCL_HAVE_THIS_FILE__
17#undef __THIS_FILE__
18static const char_t __UNUSED__ __THIS_FILE__[] = __T("dcl/_utime.cpp");
19#endif
20
21__DCL_BEGIN_NAMESPACE
22
23int __utime(const String& _filename, struct utimbuf* _buf)
24{
25 STRTOMBS_ER(_filename, filename);
26 return utime(filename, _buf);
27}
28
29__DCL_END_NAMESPACE
30
31#endif // __WINNT__
#define STRTOMBS_ER(str, mbs)
Definition __strumbs.h:33
#define __THIS_FILE__
Definition _trace.h:14
__DCL_BEGIN_NAMESPACE int __utime(const String &_filename, struct utimbuf *_buf)
Definition _utime.cpp:23
#define __UNUSED__
Definition Config.h:341
wchar_t char_t
Definition Config.h:247
#define __T(str)
Definition Object.h:60