mirror of
https://github.com/ACreTeam/ac-decomp
synced 2026-05-27 15:42:46 -04:00
80ef14e480
* match and link JKRAram.cpp * match and link JKRExpHeap * match and link JKRAramStream.cpp * match and link JKRFileLoader.cpp * match and link JKRFileFinder.cpp * JKernel Dump * match and link JKRAramArchive.cpp * match and link JKRDvdArchive.cpp * match and link JKRCompArchive.cpp * match but not link JKRDvdAramRipper * small refactors * match and link JKRThread.cpp * fix and link JKRDvdAramStream.cpp * Formatting fixes --------- Co-authored-by: SwareJonge <olaf23okken@gmail.com>
29 lines
691 B
C++
29 lines
691 B
C++
#ifndef _JSYSTEM_JUT_JUTCONSOLE_H
|
|
#define _JSYSTEM_JUT_JUTCONSOLE_H
|
|
|
|
#include "va_args.h"
|
|
|
|
class JUTConsole; // TODO
|
|
|
|
#ifdef __cplusplus
|
|
extern "C"
|
|
{
|
|
#endif
|
|
void JUTConsole_print_f_va_(JUTConsole*, const char*, va_list);
|
|
|
|
JUTConsole* JUTGetReportConsole();
|
|
void JUTSetReportConsole(JUTConsole*);
|
|
JUTConsole* JUTGetWarningConsole();
|
|
void JUTSetWarningConsole(JUTConsole*);
|
|
void JUTReportConsole(const char*);
|
|
void JUTReportConsole_f(const char*, ...);
|
|
void JUTReportConsole_f_va(const char*, va_list);
|
|
void JUTWarningConsole(const char*);
|
|
void JUTWarningConsole_f(const char*, ...);
|
|
void JUTWarningConsole_f_va(const char*, va_list);
|
|
#ifdef __cplusplus
|
|
};
|
|
#endif // ifdef __cplusplus
|
|
|
|
#endif
|