2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-09-30 05:22:57 +00:00
|
|
|
#if defined _WIN32
|
2010-07-10 21:17:08 +00:00
|
|
|
|
2009-11-18 21:11:05 +00:00
|
|
|
// Memory leak checks
|
2009-02-28 01:26:56 +00:00
|
|
|
#define CHECK_HEAP_INTEGRITY()
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-08-16 00:37:01 +00:00
|
|
|
// Debug definitions
|
2009-02-28 01:26:56 +00:00
|
|
|
#if defined(_DEBUG)
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#undef CHECK_HEAP_INTEGRITY
|
|
|
|
#define CHECK_HEAP_INTEGRITY() \
|
|
|
|
{ \
|
|
|
|
if (!_CrtCheckMemory()) \
|
2021-11-11 01:43:24 +00:00
|
|
|
PanicAlertFmt("memory corruption detected. see log."); \
|
2009-02-28 01:26:56 +00:00
|
|
|
}
|
2009-11-18 21:11:05 +00: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 01:26:56 +00:00
|
|
|
#endif // end DEBUG/FAST
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2012-03-23 01:57:30 +00:00
|
|
|
#endif
|
|
|
|
|
2010-07-10 21:17:08 +00:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define __getcwd _getcwd
|
|
|
|
#define __chdir _chdir
|
|
|
|
#else
|
|
|
|
#define __getcwd getcwd
|
|
|
|
#define __chdir chdir
|
|
|
|
#endif
|
2009-02-28 16:33:59 +00:00
|
|
|
|
2011-01-13 20:53:37 +00:00
|
|
|
// Dummy macro for marking translatable strings that can not be immediately translated.
|
|
|
|
#define _trans(a) a
|