/
makani
/
strongdc
Обзор
Документация
Войти
/
makani
/
strongdc
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
client/debug.h
63 строки
2 KB
bigmuscle
updated boost
27 июл 2011, 21:07
27 июл 2011, 21:07
fc61ef1
Код
Авторство
О чём код?
/* * Copyright (C) 2001-2011 Jacek Sieka, arnetheduck on gmail point com * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ #ifndef DCPP_DCPLUSPLUS_DEBUG_H_ #define DCPP_DCPLUSPLUS_DEBUG_H_ #include <cstdio> #ifdef _DEBUG #include <cassert> inline void CDECL debugTrace(const char* format, ...) { va_list args; va_start(args, format); #if defined _WIN32 && defined _MSC_VER char buf[512]; _vsnprintf(buf, sizeof(buf), format, args); OutputDebugStringA(buf); #else // _WIN32 vprintf(format, args); #endif // _WIN32 va_end(args); } #define dcdebug debugTrace #ifdef _MSC_VER #include <crtdbg.h> #define dcassert(exp) \ do { if (!(exp)) { \ dcdebug("Assertion hit in %s(%d): " #exp "\n", __FILE__, __LINE__); \ if(1 == _CrtDbgReport(_CRT_ASSERT, __FILE__, __LINE__, NULL, #exp)) \ _CrtDbgBreak(); } } while(false) #else #define dcassert(exp) assert(exp) #endif #define dcdrun(exp) exp #else //_DEBUG #define dcdebug if (false) printf #define dcassert(exp) #define dcdrun(exp) #endif //_DEBUG #endif /* DCPP_DCPLUSPLUS_DEBUG_H_ */