]> git.tdb.fi Git - libs/core.git/blob - source/fs/unix/stat_platform.h
Improve robustness of resolving user/group names in Stat
[libs/core.git] / source / fs / unix / stat_platform.h
1 #ifndef MSP_FS_STAT_PLATFORM_H_
2 #define MSP_FS_STAT_PLATFORM_H_
3
4 #include <unistd.h>
5
6 namespace Msp {
7 namespace FS {
8
9 typedef uid_t UserID;
10 typedef gid_t GroupID;
11
12 const UserID INVALID_UID = -1;
13 const GroupID INVALID_GID = -1;
14
15 } // namespace FS
16 } // namespace Msp
17
18 #endif