/* * Debug API * * Copyright 2001 Francois Gouget. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library 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 * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA */ #ifndef __WINE_CRTDBG_H_ #define __WINE_CRTDBG_H_ #include /* The debug API is not implemented in Winelib. * Redirect everything to the regular APIs. */ #define _CRT_WARN 0 #define _CRT_ERROR 1 #define _CRT_ASSERT 2 #define _CRT_ERRCNT 3 #define _FREE_BLOCK 0 #define _NORMAL_BLOCK 1 #define _CRT_BLOCK 2 #define _IGNORE_BLOCK 3 #define _CLIENT_BLOCK 4 #define _MAX_BLOCKS 5 #define _BLOCK_TYPE(block) (block & 0xFFFF) #define _BLOCK_SUBTYPE(block) (block >> 16 & 0xFFFF) typedef struct _CrtMemState { struct _CrtMemBlockHeader* pBlockHeader; __msvcrt_ulong lCounts[_MAX_BLOCKS]; __msvcrt_ulong lSizes[_MAX_BLOCKS]; __msvcrt_ulong lHighWaterCount; __msvcrt_ulong lTotalCount; } _CrtMemState; #ifndef _DEBUG #define _ASSERT(expr) ((void)0) #define _ASSERTE(expr) ((void)0) #define _CrtDbgBreak() ((void)0) #define _CrtCheckMemory() ((int)1) #define _CrtDbgReport(...) ((int)0) #define _CrtDumpMemoryLeaks() ((int)0) #define _CrtSetBreakAlloc(a) ((__msvcrt_long)0) #define _CrtSetDbgFlag(f) ((int)0) #define _CrtSetDumpClient(f) ((void)0) #define _CrtSetReportMode(t,m) ((int)0) #else /* _DEBUG */ #include #define _ASSERT(expr) assert(expr) #define _ASSERTE(expr) assert(expr) #if defined(_MSC_VER) #define _CrtDbgBreak() __debugbreak() #elif defined(__GNUC__) && (defined(__i386__) || defined(__x86_64__)) #define _CrtDbgBreak() __asm__ ("\tint $0x3\n") #else #define _CrtDbgBreak() ((void)0) #endif #ifdef __cplusplus extern "C" { #endif extern int _crtAssertBusy; extern int _crtBreakAlloc; extern int _crtDbgFlag; int __cdecl _CrtCheckMemory(void); int WINAPIV _CrtDbgReport(int reportType, const char *filename, int linenumber, const char *moduleName, const char *format, ...); int __cdecl _CrtDumpMemoryLeaks(void); int __cdecl _CrtSetBreakAlloc(int); int __cdecl _CrtSetDbgFlag(int); void *__cdecl _CrtSetDumpClient(void *dumpClient); int __cdecl _CrtSetReportMode(int reportType, int reportMode); #ifdef __cplusplus } #endif #endif /* _DEBUG */ #define _CrtDoForAllClientObjects(f,c) ((void)0) #define _CrtIsMemoryBlock(p,s,r,f,l) ((int)1) #define _CrtIsValidHeapPointer(p) ((int)1) #define _CrtIsValidPointer(p,s,a) ((int)1) #define _CrtMemCheckpoint(s) ((void)0) #define _CrtMemDifference(s1,s2,s3) ((int)0) #define _CrtMemDumpAllObjectsSince(s) ((void)0) #define _CrtMemDumpStatistics(s) ((void)0) #define _CrtSetAllocHook(f) ((void)0) #define _RPT0(t,m) #define _RPT1(t,m,p1) #define _RPT2(t,m,p1,p2) #define _RPT3(t,m,p1,p2,p3) #define _RPT4(t,m,p1,p2,p3,p4) #define _RPTF0(t,m) #define _RPTF1(t,m,p1) #define _RPTF2(t,m,p1,p2) #define _RPTF3(t,m,p1,p2,p3) #define _RPTF4(t,m,p1,p2,p3,p4) #define _malloc_dbg(s,t,f,l) malloc(s) #define _calloc_dbg(c,s,t,f,l) calloc(c,s) #define _expand_dbg(p,s,t,f,l) _expand(p,s) #define _free_dbg(p,t) free(p) #define _realloc_dbg(p,s,t,f,l) realloc(p,s) #endif /* __WINE_CRTDBG_H */