43 lines
621 B
C++
43 lines
621 B
C++
/***
|
|
Copyright (C) 2021 J Reece Wilson (a/k/a "Reece"). All rights reserved.
|
|
|
|
File: Telemetry.cpp
|
|
Date: 2021-6-17
|
|
Author: Reece
|
|
***/
|
|
#include <RuntimeInternal.hpp>
|
|
#include <Debug/Debug.hpp>
|
|
#include "Telemetry.hpp"
|
|
|
|
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 Report(Telemetry::NewBlockboxEntry &entry)
|
|
{
|
|
|
|
}
|
|
|
|
AUKN_SYM void Mayday()
|
|
{
|
|
|
|
}
|
|
} |