1 /** 2 * This file has no copyright assigned and is placed in the Public Domain. 3 * This file is part of the w64 mingw-runtime package. 4 * No warranty is given; refer to the file DISCLAIMER within this package. 5 */ 6 #include <corecrt.h> 7 8 #ifndef _INC_CRTDBG 9 #define _INC_CRTDBG 10 11 #pragma pack(push,_CRT_PACKING) 12 13 #ifdef __cplusplus 14 extern "C" { 15 #endif 16 17 typedef void *_HFILE; 18 19 #define _CRT_WARN 0 20 #define _CRT_ERROR 1 21 #define _CRT_ASSERT 2 22 #define _CRT_ERRCNT 3 23 24 #define _CRTDBG_MODE_FILE 0x1 25 #define _CRTDBG_MODE_DEBUG 0x2 26 #define _CRTDBG_MODE_WNDW 0x4 27 #define _CRTDBG_REPORT_MODE -1 28 29 #define _CRTDBG_INVALID_HFILE ((_HFILE)-1) 30 #define _CRTDBG_HFILE_ERROR ((_HFILE)-2) 31 #define _CRTDBG_FILE_STDOUT ((_HFILE)-4) 32 #define _CRTDBG_FILE_STDERR ((_HFILE)-5) 33 #define _CRTDBG_REPORT_FILE ((_HFILE)-6) 34 35 typedef int (__cdecl *_CRT_REPORT_HOOK)(int,char *,int *); 36 typedef int (__cdecl *_CRT_REPORT_HOOKW)(int,wchar_t *,int *); 37 38 #define _CRT_RPTHOOK_INSTALL 0 39 #define _CRT_RPTHOOK_REMOVE 1 40 41 #define _HOOK_ALLOC 1 42 #define _HOOK_REALLOC 2 43 #define _HOOK_FREE 3 44 45 typedef int (__cdecl *_CRT_ALLOC_HOOK)(int,void *,size_t,int,long,const unsigned char *,int); 46 47 #define _CRTDBG_ALLOC_MEM_DF 0x01 48 #define _CRTDBG_DELAY_FREE_MEM_DF 0x02 49 #define _CRTDBG_CHECK_ALWAYS_DF 0x04 50 #define _CRTDBG_RESERVED_DF 0x08 51 #define _CRTDBG_CHECK_CRT_DF 0x10 52 #define _CRTDBG_LEAK_CHECK_DF 0x20 53 54 #define _CRTDBG_CHECK_EVERY_16_DF 0x00100000 55 #define _CRTDBG_CHECK_EVERY_128_DF 0x00800000 56 #define _CRTDBG_CHECK_EVERY_1024_DF 0x04000000 57 58 #define _CRTDBG_CHECK_DEFAULT_DF 0 59 60 #define _CRTDBG_REPORT_FLAG -1 61 62 #define _BLOCK_TYPE(block) (block & 0xFFFF) 63 #define _BLOCK_SUBTYPE(block) (block >> 16 & 0xFFFF) 64 65 #define _FREE_BLOCK 0 66 #define _NORMAL_BLOCK 1 67 #define _CRT_BLOCK 2 68 #define _IGNORE_BLOCK 3 69 #define _CLIENT_BLOCK 4 70 #define _MAX_BLOCKS 5 71 72 typedef void (__cdecl *_CRT_DUMP_CLIENT)(void *,size_t); 73 74 struct _CrtMemBlockHeader; 75 76 typedef struct _CrtMemState { 77 struct _CrtMemBlockHeader *pBlockHeader; 78 size_t lCounts[_MAX_BLOCKS]; 79 size_t lSizes[_MAX_BLOCKS]; 80 size_t lHighWaterCount; 81 size_t lTotalCount; 82 } _CrtMemState; 83 84 85 // Debug reporting functions 86 87 #ifdef _DEBUG 88 89 int __cdecl _CrtDbgReport(int reportType, const char *filename, int linenumber, const char *moduleName, const char *format, ...); 90 int __cdecl _CrtDbgReportW(int reportType, const wchar_t *filename, int linenumber, const wchar_t *moduleName, const wchar_t *format, ...); 91 92 int __cdecl _CrtDbgReportV(int reportType, const char *filename, int linenumber, const char *moduleName, const char *format, va_list arglist); 93 int __cdecl _CrtDbgReportWV(int reportType, const wchar_t *filename, int linenumber, const wchar_t *moduleName, const wchar_t *format, va_list arglist); 94 95 #endif 96 97 98 // Assertion and error reporting 99 100 #ifndef _DEBUG 101 102 #define _CrtDbgBreak() ((void)0) 103 104 #ifndef _ASSERT_EXPR 105 #define _ASSERT_EXPR(expr,expr_str) ((void)0) 106 #endif 107 108 #ifndef _ASSERT 109 #define _ASSERT(expr) ((void)0) 110 #endif 111 112 #ifndef _ASSERTE 113 #define _ASSERTE(expr) ((void)0) 114 #endif 115 116 117 #define _RPT0(rptno,msg) 118 #define _RPTN(rptno,msg,...) 119 120 #define _RPTW0(rptno,msg) 121 #define _RPTWN(rptno,msg,...) 122 123 #define _RPTF0(rptno,msg) 124 #define _RPTFN(rptno,msg,...) 125 126 #define _RPTFW0(rptno,msg) 127 #define _RPTFWN(rptno,msg,...) 128 129 #define _CrtSetReportMode(t,f) ((int)0) 130 #define _CrtSetReportFile(t,f) ((_HFILE)0) 131 132 #else // _DEBUG 133 134 #define _CrtDbgBreak() __debugbreak() 135 136 #ifndef _ASSERT_EXPR 137 #define _ASSERT_EXPR(expr,expr_str) \ 138 (void)((!!(expr)) || (_CrtDbgReportW(_CRT_ASSERT, _CRT_WIDE(__FILE__), __LINE__, NULL, L"%ls", expr_str) != 1) || (_CrtDbgBreak(), 0)) 139 #endif 140 141 #ifndef _ASSERT 142 #define _ASSERT(expr) _ASSERT_EXPR((expr), NULL) 143 #endif 144 145 #ifndef _ASSERTE 146 #define _ASSERTE(expr) _ASSERT_EXPR((expr), _CRT_WIDE(#expr)) 147 #endif 148 149 #define _RPT_BASE(...) \ 150 (void)((_CrtDbgReport(__VA_ARGS__) != 1) || (_CrtDbgBreak(), 0)) 151 152 #define _RPT_BASEW(...) \ 153 (void)((_CrtDbgReportW(__VA_ARGS__) != 1) || (_CrtDbgBreak(), 0)) 154 155 156 #define _RPT0(rptno,msg) _RPT_BASE(rptno, NULL, 0, NULL, "%s", msg) 157 #define _RPTN(rptno,msg,...) _RPT_BASE(rptno, NULL, 0, NULL, msg, __VA_ARGS__) 158 159 #define _RPTW0(rptno,msg) _RPT_BASEW(rptno, NULL, 0, NULL, L"%s", msg) 160 #define _RPTWN(rptno,msg,...) _RPT_BASEW(rptno, NULL, 0, NULL, msg, __VA_ARGS__) 161 162 #define _RPTF0(rptno,msg) _RPT_BASE(rptno, __FILE__, __LINE__, NULL, "%s", msg) 163 #define _RPTFN(rptno,msg,...) _RPT_BASE(rptno, __FILE__, __LINE__, NULL, msg, __VA_ARGS__) 164 165 #define _RPTFW0(rptno,msg) _RPT_BASEW(rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, L"%s", msg) 166 #define _RPTFWN(rptno,msg,...) _RPT_BASEW(rptno, _CRT_WIDE(__FILE__), __LINE__, NULL, msg, __VA_ARGS__) 167 168 int __cdecl _CrtSetReportMode(int reportType, int reportMode); 169 _HFILE __cdecl _CrtSetReportFile(int reportType, _HFILE reportFile); 170 171 #endif 172 173 174 #define _RPT1 _RPTN 175 #define _RPT2 _RPTN 176 #define _RPT3 _RPTN 177 #define _RPT4 _RPTN 178 #define _RPT5 _RPTN 179 180 181 #define _RPTW1 _RPTWN 182 #define _RPTW2 _RPTWN 183 #define _RPTW3 _RPTWN 184 #define _RPTW4 _RPTWN 185 #define _RPTW5 _RPTWN 186 187 188 #define _RPTF1 _RPTFN 189 #define _RPTF2 _RPTFN 190 #define _RPTF3 _RPTFN 191 #define _RPTF4 _RPTFN 192 #define _RPTF5 _RPTFN 193 194 195 #define _RPTFW1 _RPTFWN 196 #define _RPTFW2 _RPTFWN 197 #define _RPTFW3 _RPTFWN 198 #define _RPTFW4 _RPTFWN 199 #define _RPTFW5 _RPTFWN 200 201 202 203 #define _malloc_dbg(s,t,f,l) malloc(s) 204 #define _calloc_dbg(c,s,t,f,l) calloc(c,s) 205 #define _realloc_dbg(p,s,t,f,l) realloc(p,s) 206 #define _recalloc_dbg(p,c,s,t,f,l) _recalloc(p,c,s) 207 #define _expand_dbg(p,s,t,f,l) _expand(p,s) 208 #define _free_dbg(p,t) free(p) 209 #define _msize_dbg(p,t) _msize(p) 210 211 #define _aligned_malloc_dbg(s,a,f,l) _aligned_malloc(s,a) 212 #define _aligned_realloc_dbg(p,s,a,f,l) _aligned_realloc(p,s,a) 213 #define _aligned_recalloc_dbg(p,c,s,a,f,l) _aligned_realloc(p,c,s,a) 214 #define _aligned_free_dbg(p) _aligned_free(p) 215 #define _aligned_offset_malloc_dbg(s,a,o,f,l) _aligned_offset_malloc(s,a,o) 216 #define _aligned_offset_realloc_dbg(p,s,a,o,f,l) _aligned_offset_realloc(p,s,a,o) 217 #define _aligned_offset_recalloc_dbg(p,c,s,a,o,f,l) _aligned_offset_recalloc(p,c,s,a,o) 218 219 #define _malloca_dbg(s,t,f,l) _malloca(s) 220 #define _freea_dbg(p,t) _freea(p) 221 222 #define _strdup_dbg(s,t,f,l) _strdup(s) 223 #define _wcsdup_dbg(s,t,f,l) _wcsdup(s) 224 #define _mbsdup_dbg(s,t,f,l) _mbsdup(s) 225 #define _tempnam_dbg(s1,s2,t,f,l) _tempnam(s1,s2) 226 #define _wtempnam_dbg(s1,s2,t,f,l) _wtempnam(s1,s2) 227 #define _fullpath_dbg(s1,s2,le,t,f,l) _fullpath(s1,s2,le) 228 #define _wfullpath_dbg(s1,s2,le,t,f,l) _wfullpath(s1,s2,le) 229 #define _getcwd_dbg(s,le,t,f,l) _getcwd(s,le) 230 #define _wgetcwd_dbg(s,le,t,f,l) _wgetcwd(s,le) 231 #define _getdcwd_dbg(d,s,le,t,f,l) _getdcwd(d,s,le) 232 #define _wgetdcwd_dbg(d,s,le,t,f,l) _wgetdcwd(d,s,le) 233 #define _getdcwd_lk_dbg(d,s,le,t,f,l) _getdcwd_nolock(d,s,le) 234 #define _wgetdcwd_lk_dbg(d,s,le,t,f,l) _wgetdcwd_nolock(d,s,le) 235 236 #define _CrtSetReportHook(f) ((_CRT_REPORT_HOOK)0) 237 #define _CrtGetReportHook() ((_CRT_REPORT_HOOK)0) 238 #define _CrtSetReportHook2(t,f) ((int)0) 239 #define _CrtSetReportHookW2(t,f) ((int)0) 240 241 #define _CrtSetBreakAlloc(a) ((long)0) 242 #define _CrtSetAllocHook(f) ((_CRT_ALLOC_HOOK)0) 243 #define _CrtGetAllocHook() ((_CRT_ALLOC_HOOK)0) 244 #define _CrtCheckMemory() ((int)1) 245 #define _CrtSetDbgFlag(f) ((int)0) 246 #define _CrtDoForAllClientObjects(f,c) ((void)0) 247 #define _CrtIsValidPointer(p,n,r) ((int)1) 248 #define _CrtIsValidHeapPointer(p) ((int)1) 249 #define _CrtIsMemoryBlock(p,t,r,f,l) ((int)1) 250 #define _CrtReportBlockType(p) ((int)-1) 251 #define _CrtSetDumpClient(f) ((_CRT_DUMP_CLIENT)0) 252 #define _CrtGetDumpClient() ((_CRT_DUMP_CLIENT)0) 253 #define _CrtMemCheckpoint(s) ((void)0) 254 #define _CrtMemDifference(s1,s2,s3) ((int)0) 255 #define _CrtMemDumpAllObjectsSince(s) ((void)0) 256 #define _CrtMemDumpStatistics(s) ((void)0) 257 #define _CrtDumpMemoryLeaks() ((int)0) 258 #define _CrtSetDebugFillThreshold(t) ((size_t)0) 259 #define _CrtSetCheckCount(f) ((int)0) 260 #define _CrtGetCheckCount() ((int)0) 261 262 #ifdef __cplusplus 263 } 264 265 void *__cdecl operator new[](size_t _Size); new(size_t _Size,int,const char *,int)266 inline void *__cdecl operator new(size_t _Size,int,const char *,int) { return ::operator new(_Size); } 267 inline void *__cdecl operator new[](size_t _Size,int,const char *,int) { return ::operator new[](_Size); } 268 void __cdecl operator delete[](void *) throw(); delete(void * _P,int,const char *,int)269 inline void __cdecl operator delete(void *_P,int,const char *,int) throw() { ::operator delete(_P); } throw()270 inline void __cdecl operator delete[](void *_P,int,const char *,int) throw() { ::operator delete[](_P); } 271 #endif 272 273 #pragma pack(pop) 274 275 #include <sec_api/crtdbg_s.h> 276 277 #endif 278