mirror of
https://github.com/thunderbrewhq/common.git
synced 2025-12-12 03:02:29 +00:00
12 lines
177 B
C++
12 lines
177 B
C++
#ifndef COMMON_TIME_HPP
|
|
#define COMMON_TIME_HPP
|
|
|
|
#include <cstdint>
|
|
|
|
uint64_t OsGetAsyncTimeMs();
|
|
|
|
uint64_t OsGetAsyncTimeMsPrecise();
|
|
|
|
void OsSleep(uint32_t duration);
|
|
|
|
#endif
|