hwtests/source/output.h

19 lines
332 B
C
Raw Permalink Normal View History

#pragma once
2014-10-26 18:47:14 -07:00
#include <string>
2014-10-26 18:47:14 -07:00
#include <3ds.h>
void InitOutput();
/// Prints `text` to `screen`.
void Print(const std::string& text);
/// Prints `text` to `screen`, and logs it in the log file.
void Log(const std::string& text);
/// Logs `text` to the log file.
void LogToFile(const std::string& text);
void DeinitOutput();