wiiu-nanddumper-payload/src/dynamic_libs/os_types.h

30 lines
329 B
C
Raw Normal View History

2016-12-12 19:31:02 +01:00
#ifndef _OS_TYPES_H_
#define _OS_TYPES_H_
#ifdef __cplusplus
extern "C" {
#endif
#include <gctypes.h>
2021-12-30 20:14:25 +01:00
typedef u32 BOOL;
2016-12-12 19:31:02 +01:00
typedef struct _OSCalendarTime {
int sec;
int min;
int hour;
int mday;
int mon;
int year;
int wday;
int yday;
int msec;
int usec;
} OSCalendarTime;
#ifdef __cplusplus
}
#endif
#endif