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>
typedef struct _OSCalendarTime {
int32_t tm_sec;
int32_t tm_min;
int32_t tm_hour;
int32_t tm_mday;
int32_t tm_mon;
int32_t tm_year;
int sec;
int min;
int hour;
int mday;
int mon;
int year;
int wday;
int yday;
int msec;
int usec;
} OSCalendarTime;
#ifdef __cplusplus