From 7dd4f91ac635b001a56cc7a27af48f0436bbad3f Mon Sep 17 00:00:00 2001 From: DeaTh-G Date: Sun, 24 Nov 2024 11:25:45 +0100 Subject: [PATCH] add time fields struct --- PowerUtils/xbox.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/PowerUtils/xbox.h b/PowerUtils/xbox.h index 251a2d8..e5c1656 100644 --- a/PowerUtils/xbox.h +++ b/PowerUtils/xbox.h @@ -354,6 +354,18 @@ typedef struct _XUSER_SIGNIN_INFO { CHAR Name[16]; } XUSER_SIGNIN_INFO; +typedef struct _XTIME_FIELDS +{ + XWORD Year; + XWORD Month; + XWORD Day; + XWORD Hour; + XWORD Minute; + XWORD Second; + XWORD Milliseconds; + XWORD Weekday; +} XTIME_FIELDS, * PXTIME_FIELDS; + // Content types #define XCONTENTTYPE_SAVEDATA 1 #define XCONTENTTYPE_DLC 2