]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/msw/msvcrt.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/msw/msvcrt.h
3 // Purpose: macros to use some non-standard features of MS Visual C++
5 // Author: Vadim Zeitlin
9 // Copyright: (c) Vadim Zeitlin
10 // Licence: wxWindows licence
11 /////////////////////////////////////////////////////////////////////////////
13 // the goal of this file is to define wxCrtSetDbgFlag() macro which may be
15 // wxCrtSetDbgFlag(_CRTDBG_LEAK_CHECK_DF);
16 // to turn on memory leak checks for programs compiled with Microsoft Visual
17 // C++ (5.0+). The macro will expand to nothing under other compilers.
19 #ifndef _MSW_MSVCRT_H_
20 #define _MSW_MSVCRT_H_
22 // use debug CRT functions for memory leak detections in VC++ 5.0+ in debug
24 #undef wxUSE_VC_CRTDBG
25 #if defined(__WXDEBUG__) && defined(__VISUALC__) && (__VISUALC__ >= 1000) \
27 // it doesn't combine well with wxWin own memory debugging methods
28 #if !wxUSE_GLOBAL_MEMORY_OPERATORS && !wxUSE_MEMORY_TRACING && !defined(__NO_VC_CRTDBG__)
29 #define wxUSE_VC_CRTDBG
33 #ifdef wxUSE_VC_CRTDBG
34 // VC++ uses this macro as debug/release mode indicator
39 // Need to undef new if including crtdbg.h which redefines new itself
44 // we need this to show file & line number of the allocation that caused
46 #define _CRTDBG_MAP_ALLOC
49 // Need when builded with pure MS SDK
55 // this define works around a bug with inline declarations of new, see
57 // http://support.microsoft.com/support/kb/articles/Q140/8/58.asp
60 #define new new( _NORMAL_BLOCK, __FILE__, __LINE__)
62 #define wxCrtSetDbgFlag(flag) \
63 _CrtSetDbgFlag(_CrtSetDbgFlag(_CRTDBG_REPORT_FLAG) | (flag))
64 #else // !using VC CRT
65 #define wxCrtSetDbgFlag(flag)
66 #endif // wxUSE_VC_CRTDBG
68 #endif // _MSW_MSVCRT_H_