DCL 4.0
Loading...
Searching...
No Matches
_stat.h
Go to the documentation of this file.
1#ifndef __DCL_STAT_H__
2#define __DCL_STAT_H__ 20110119
3
4#include <sys/stat.h>
5
6__DCL_BEGIN_NAMESPACE
7
8class String;
9
13
14DCLCAPI int __stat(const String& _path, struct stat* _buf);
15DCLCAPI int __lstat(const String& _path, struct stat* _buf);
16
17DCLCAPI int __chmod(const String& _path, mode_t _mode);
18DCLCAPI int __lchmod(const String& _path, mode_t _mode);
19
20DCLCAPI int __mkdir(const String& _path, mode_t _mode);
21
22DCLCAPI int __mkfifo(const String& _path, mode_t _mode);
23
24__DCL_END_NAMESPACE
25
26#endif // __DCL_STAT_H__
DCLCAPI int __lstat(const String &_path, struct stat *_buf)
Definition _stat.cpp:27
DCLCAPI int __lchmod(const String &_path, mode_t _mode)
Definition _stat.cpp:39
DCLCAPI int __chmod(const String &_path, mode_t _mode)
Definition _stat.cpp:33
DCLCAPI int __mkdir(const String &_path, mode_t _mode)
Definition _stat.cpp:45
DCLCAPI int __stat(const String &_path, struct stat *_buf)
Definition _stat.cpp:21
DCLCAPI int __mkfifo(const String &_path, mode_t _mode)
Definition _stat.cpp:51
#define DCLCAPI
Definition Config.h:100