Create os_types.h

This commit is contained in:
rw-r-r-0644 2016-09-19 18:22:52 +02:00 committed by GitHub
parent 29cb6d12e2
commit c4b638934a

23
os_types.h Normal file
View File

@ -0,0 +1,23 @@
#ifndef _OS_TYPES_H_
#define _OS_TYPES_H_
#ifdef __cplusplus
extern "C" {
#endif
#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;
} OSCalendarTime;
#ifdef __cplusplus
}
#endif
#endif