This commit is contained in:
rw-r-r-0644 2016-09-19 19:21:08 +02:00 committed by GitHub
parent de95ba005b
commit 075f5820eb

View File

@ -8,12 +8,16 @@ extern "C" {
#include <gctypes.h> #include <gctypes.h>
typedef struct _OSCalendarTime { typedef struct _OSCalendarTime {
int32_t tm_sec; int sec;
int32_t tm_min; int min;
int32_t tm_hour; int hour;
int32_t tm_mday; int mday;
int32_t tm_mon; int mon;
int32_t tm_year; int year;
int wday;
int yday;
int msec;
int usec;
} OSCalendarTime; } OSCalendarTime;
#ifdef __cplusplus #ifdef __cplusplus