-
Notifications
You must be signed in to change notification settings - Fork 0
Audit Trail
Jon Daniel edited this page Sep 20, 2024
·
13 revisions
namespace tr::pod::audit
{
enum action : u32
{
add = 0,
rem = 1,
chg = 2,
};
struct entry
{
c8 user[32];
u32 timestamp;
enum action action;
c8 path[256];
i32 old_timestamp;
u32 old_size;
i32 new_timestamp;
u32 new_size;
};
};All information here is to my best knowledge, is is not proven by any official reference manual by Microsoft or Terminal Reality.