2023-07-10 15:29:38 +00:00
|
|
|
/***
|
|
|
|
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
|
2023-12-13 22:13:28 +00:00
|
|
|
*/
|
2023-07-10 15:29:38 +00:00
|
|
|
AUKN_SYM AuUInt64 GetProcessStartupTimeNS();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defer to the AuTime namespace to convert the return unsigned integer to something useful
|
2023-12-13 22:13:28 +00:00
|
|
|
*/
|
2023-07-10 15:29:38 +00:00
|
|
|
AUKN_SYM AuUInt64 GetProcessStartupTimeMS();
|
2023-12-13 22:13:28 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Defer to AuTime::SteadyClockNS()
|
|
|
|
*/
|
|
|
|
AUKN_SYM AuUInt64 GetProcessStartupSteadyTimeNS();
|
2023-07-10 15:29:38 +00:00
|
|
|
}
|