первый

This commit is contained in:
2024-11-01 12:23:13 +05:00
parent 801d9d33fa
commit 0688c46a7e
226 changed files with 162921 additions and 0 deletions

20
lib/tcDebug.h Normal file
View File

@ -0,0 +1,20 @@
#ifndef debugH
#define debugH
#if defined( __WXMSW__ )
/*
//#define _DEBUG
#define _CRTDBG_MAP_ALLOC
#include <stdlib.h>
#include <crtdbg.h>
#ifdef _DEBUG
#ifdef _CRTDBG_MAP_ALLOC
#define new new(_NORMAL_BLOCK, __FILE__, __LINE__)
#endif // _CRTDBG_MAP_ALLOC
#endif // _DEBUG
*/
#endif // __WXMSW__
//-------------------------------------------------------------------------
#endif