Skip to content
Jon Daniel edited this page Nov 6, 2024 · 13 revisions

EPD POD1 POD2 POD3 POD4 POD5 POD6 Terminal Reality Home

namespace audit
{
enum action : u32
{
	add = 0,
	rem = 1,
	chg = 2,
};
struct entry
{
	c8  user[32];
	i32 timestamp;
	enum action action;
	c8  path[256];
	i32 old_timestamp;
	u32 old_size;
	i32 new_timestamp;
	u32 new_size;
};
};
Clone this wiki locally