add time fields struct

This commit is contained in:
DeaTh-G 2024-11-24 11:25:45 +01:00
parent 4b47b24afd
commit 7dd4f91ac6

View File

@ -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