mirror of
https://github.com/Fennix-Project/Kernel.git
synced 2025-05-27 15:04:33 +00:00
15 lines
235 B
C++
15 lines
235 B
C++
#ifndef __FENNIX_KERNEL_TIME_H__
|
|
#define __FENNIX_KERNEL_TIME_H__
|
|
|
|
#include <types.h>
|
|
|
|
struct Time
|
|
{
|
|
uint64_t Year, Month, Day, Hour, Minute, Second;
|
|
uint64_t Counter;
|
|
};
|
|
|
|
Time ReadClock();
|
|
|
|
#endif // !__FENNIX_KERNEL_TIME_H__
|