AuroraRuntime/Source/Telemetry/Telemetry.hpp

19 lines
485 B
C++
Raw Normal View History

2021-06-27 21:25:29 +00:00
/***
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
File: Telemetry.hpp
Date: 2021-6-17
Author: Reece
***/
#pragma once
namespace Aurora::Telemetry
{
void InsertOSError(const Debug::OSError_t &osError);
void InsertMsgError(const Debug::LastError &error);
void InsertCError(AuSInt cError);
void InsertManualFence(AuUInt32 fence);
void ReportSysInfo();
2021-06-27 21:25:29 +00:00
void Report(Telemetry::NewBlockboxEntry &entry);
void Init();
2021-06-27 21:25:29 +00:00
}