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