]> git.tdb.fi Git - libs/core.git/blob - source/fs/windows/stat_platform.h
c193accd186b6452410e16fbc0fe0cf75f1d50ff
[libs/core.git] / source / fs / windows / stat_platform.h
1 #ifndef MSP_FS_STAT_PLATFORM_H_
2 #define MSP_FS_STAT_PLATFORM_H_
3
4 #include <windows.h>
5
6 namespace Msp {
7 namespace FS {
8
9 typedef PSID UserID;
10 typedef PSID GroupID;
11
12 const UserID INVALID_UID = 0;
13 const GroupID INVALID_GID = 0;
14
15 } // namespace FS
16 } // namespace Msp
17
18 #endif