Files
RCBASIC4/rcbasic_build/rc_debug.h
2024-05-20 09:14:32 -05:00

21 lines
310 B
C++
Executable File

#ifndef RC_DEBUG_H_INCLUDED
#define RC_DEBUG_H_INCLUDED
using namespace std;
string ERROR_MSG = "";
void rc_setError(string rc_error)
{
ERROR_MSG += rc_error + "\n";
}
string rc_getError()
{
string error_out = ERROR_MSG;
//ERROR_MSG = "";
return error_out;
}
#endif // RC_DEBUG_H_INCLUDED