| OLD | NEW |
| 1 #ifndef _PLUGIN_DEBUG_H_ | 1 #ifndef _PLUGIN_DEBUG_H_ |
| 2 #define _PLUGIN_DEBUG_H_ | 2 #define _PLUGIN_DEBUG_H_ |
| 3 | 3 |
| 4 | 4 |
| 5 class CPluginDebug | 5 class CPluginDebug |
| 6 { | 6 { |
| 7 | 7 |
| 8 public: | 8 public: |
| 9 | 9 |
| 10 #if (defined ENABLE_DEBUG_INFO) | 10 #if (defined ENABLE_DEBUG_INFO) |
| 11 static void Debug(const CString& error, DWORD dwProcessId=0, DWORD dwThreadId=
0); | 11 static void Debug(const CString& error, DWORD dwProcessId=0, DWORD dwThreadId=
0); |
| 12 static void DebugClear(); | 12 static void DebugClear(); |
| 13 static void DebugError(const CString& error); | 13 static void DebugError(const CString& error); |
| 14 static void DebugErrorCode(DWORD errorCode, const CString& error, DWORD dwProc
essId=0, DWORD dwThreadId=0); | 14 static void DebugErrorCode(DWORD errorCode, const CString& error, DWORD dwProc
essId=0, DWORD dwThreadId=0); |
| 15 #endif | 15 #endif |
| 16 | 16 |
| 17 #if (defined ENABLE_DEBUG_RESULT) | 17 #if (defined ENABLE_DEBUG_RESULT) |
| 18 static void DebugResult(const CString& text); | 18 static void DebugResult(const CString& text); |
| 19 static void DebugResultDomain(const CString& domain); | 19 static void DebugResultDomain(const CString& domain); |
| 20 static void DebugResultBlocking(const CString& type, const CString& src, const
CString& filter, const CString& filterFile); | 20 static void DebugResultBlocking(const CString& type, const CString& src); |
| 21 static void DebugResultHiding(const CString& tag, const CString& id, const CSt
ring& filter, const CString& filterFile); | 21 static void DebugResultHiding(const CString& tag, const CString& id, const CSt
ring& filter); |
| 22 static void DebugResultClear(); | 22 static void DebugResultClear(); |
| 23 #endif | 23 #endif |
| 24 | 24 |
| 25 #if (defined ENABLE_DEBUG_RESULT_IGNORED) | 25 #if (defined ENABLE_DEBUG_RESULT_IGNORED) |
| 26 static void DebugResultIgnoring(const CString& type, const CString& src); | 26 static void DebugResultIgnoring(const CString& type, const CString& src); |
| 27 #endif | 27 #endif |
| 28 }; | 28 }; |
| 29 | 29 |
| 30 | 30 |
| 31 #endif // _PLUGIN_DEBUG_H_ | 31 #endif // _PLUGIN_DEBUG_H_ |
| OLD | NEW |