2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 03:22:19 +02:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-02-10 19:54:46 +01:00
|
|
|
#pragma once
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2014-09-30 07:22:57 +02:00
|
|
|
#if defined _WIN32
|
2010-07-10 23:17:08 +02:00
|
|
|
|
2009-11-18 22:11:05 +01:00
|
|
|
// Memory leak checks
|
2009-02-28 02:26:56 +01:00
|
|
|
#define CHECK_HEAP_INTEGRITY()
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2009-08-16 02:37:01 +02:00
|
|
|
// Debug definitions
|
2009-02-28 02:26:56 +01:00
|
|
|
#if defined(_DEBUG)
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#undef CHECK_HEAP_INTEGRITY
|
|
|
|
#define CHECK_HEAP_INTEGRITY() \
|
|
|
|
{ \
|
|
|
|
if (!_CrtCheckMemory()) \
|
2021-11-11 02:43:24 +01:00
|
|
|
PanicAlertFmt("memory corruption detected. see log."); \
|
2009-02-28 02:26:56 +01:00
|
|
|
}
|
2009-11-18 22:11:05 +01:00
|
|
|
// If you want to see how much a pain in the ass singletons are, for example:
|
|
|
|
// {614} normal block at 0x030C5310, 188 bytes long.
|
|
|
|
// Data: <Master Log > 4D 61 73 74 65 72 20 4C 6F 67 00 00 00 00 00 00
|
|
|
|
struct CrtDebugBreak
|
|
|
|
{
|
|
|
|
CrtDebugBreak(int spot) { _CrtSetBreakAlloc(spot); }
|
|
|
|
};
|
|
|
|
// CrtDebugBreak breakAt(614);
|
2009-02-28 02:26:56 +01:00
|
|
|
#endif // end DEBUG/FAST
|
2008-12-08 05:46:09 +01:00
|
|
|
|
2012-03-23 02:57:30 +01:00
|
|
|
#endif
|
|
|
|
|
2010-07-10 23:17:08 +02:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define __getcwd _getcwd
|
|
|
|
#define __chdir _chdir
|
|
|
|
#else
|
|
|
|
#define __getcwd getcwd
|
|
|
|
#define __chdir chdir
|
|
|
|
#endif
|
2009-02-28 17:33:59 +01:00
|
|
|
|
2011-01-13 21:53:37 +01:00
|
|
|
// Dummy macro for marking translatable strings that can not be immediately translated.
|
|
|
|
#define _trans(a) a
|