HostInterface: Add debugger message callbacks

This commit is contained in:
Connor McLaughlin
2020-12-17 01:17:26 +10:00
parent fa0f177e51
commit a8af0f7ecb
4 changed files with 27 additions and 1 deletions

View File

@ -62,10 +62,12 @@ public:
virtual void ReportError(const char* message);
virtual void ReportMessage(const char* message);
virtual void ReportDebuggerMessage(const char* message);
virtual bool ConfirmMessage(const char* message);
void ReportFormattedError(const char* format, ...);
void ReportFormattedMessage(const char* format, ...);
void ReportFormattedDebuggerMessage(const char* format, ...);
bool ConfirmFormattedMessage(const char* format, ...);
/// Adds OSD messages, duration is in seconds.