|
|
@ -80,21 +80,3 @@ void LogMsg (ELogSeverity severity, const char *format, ...); |
|
|
|
void LogMsg (ELogSeverity severity, const wchar_t *format, ...); |
|
|
|
void LogMsg (ELogSeverity severity, const wchar_t *format, ...); |
|
|
|
void LogMsgV (ELogSeverity severity, const char *format, va_list args); |
|
|
|
void LogMsgV (ELogSeverity severity, const char *format, va_list args); |
|
|
|
void LogMsgV (ELogSeverity severity, const wchar_t *format, va_list args); |
|
|
|
void LogMsgV (ELogSeverity severity, const wchar_t *format, va_list args); |
|
|
|
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Debugging API |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
***/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HS_DEBUGGING |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void LogMsgDebug (const char *format, ...); |
|
|
|
|
|
|
|
void LogMsgDebug (const wchar_t *format, ...); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#else |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
inline void LogMsgDebug (const char *, ...) { } |
|
|
|
|
|
|
|
inline void LogMsgDebug (const wchar_t *, ...) { } |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#endif |
|
|
|
|
|
|
|