mirror of
https://github.com/wichtounet/thor-os.git
synced 2025-09-13 06:29:47 -04:00
27 lines
721 B
C++
27 lines
721 B
C++
//=======================================================================
|
|
// Copyright Baptiste Wicht 2013-2014.
|
|
// Distributed under the Boost Software License, Version 1.0.
|
|
// (See accompanying file LICENSE_1_0.txt or copy at
|
|
// http://www.boost.org/LICENSE_1_0.txt)
|
|
//=======================================================================
|
|
|
|
#ifndef USER_STAT_INFO_HPP
|
|
#define USER_STAT_INFO_HPP
|
|
|
|
#include <types.hpp>
|
|
#include <datetime.hpp>
|
|
|
|
constexpr const size_t STAT_FLAG_DIRECTORY = 0x1;
|
|
constexpr const size_t STAT_FLAG_HIDDEN = 0x2;
|
|
constexpr const size_t STAT_FLAG_SYSTEM = 0x2;
|
|
|
|
struct stat_info {
|
|
size_t flags;
|
|
size_t size;
|
|
datetime created;
|
|
datetime modified;
|
|
datetime accessed;
|
|
};
|
|
|
|
#endif
|