AuroraRuntime/Include/Aurora/Process/ProcessStartTime.hpp

26 lines
655 B
C++

/***
Copyright (C) 2023 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: ProcessStartTime.hpp
Date: 2023-7-10
Author: Reece
***/
#pragma once
namespace Aurora::Process
{
/**
* @brief Defer to the AuTime namespace to convert the return unsigned integer to something useful
*/
AUKN_SYM AuUInt64 GetProcessStartupTimeNS();
/**
* @brief Defer to the AuTime namespace to convert the return unsigned integer to something useful
*/
AUKN_SYM AuUInt64 GetProcessStartupTimeMS();
/**
* @brief Defer to AuTime::SteadyClockNS()
*/
AUKN_SYM AuUInt64 GetProcessStartupSteadyTimeNS();
}