2015-05-24 04:55:12 +00:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-17 23:08:10 +00:00
|
|
|
// Licensed under GPLv2+
|
2013-04-18 03:09:55 +00:00
|
|
|
// Refer to the license.txt file included.
|
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
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Force enable logging in the right modes. For some reason, something had changed
|
|
|
|
// so that debugfast no longer logged.
|
2010-06-05 01:38:22 +00:00
|
|
|
#if defined(_DEBUG) || defined(DEBUGFAST)
|
2009-02-28 01:26:56 +00:00
|
|
|
#undef LOGGING
|
|
|
|
#define LOGGING 1
|
|
|
|
#endif
|
|
|
|
|
2014-02-23 22:03:39 +00:00
|
|
|
#if defined(__GNUC__) || __clang__
|
|
|
|
// Disable "unused function" warnings for the ones manually marked as such.
|
|
|
|
#define UNUSED __attribute__((unused))
|
|
|
|
#else
|
|
|
|
// Not sure MSVC even checks this...
|
|
|
|
#define UNUSED
|
|
|
|
#endif
|
|
|
|
|
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
|
2016-06-24 08:43:46 +00:00
|
|
|
#define CHECK_HEAP_INTEGRITY()
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-08-16 00:37:01 +00:00
|
|
|
// Debug definitions
|
2016-06-24 08:43:46 +00:00
|
|
|
#if defined(_DEBUG)
|
|
|
|
#include <crtdbg.h>
|
|
|
|
#undef CHECK_HEAP_INTEGRITY
|
|
|
|
#define CHECK_HEAP_INTEGRITY() \
|
|
|
|
{ \
|
|
|
|
if (!_CrtCheckMemory()) \
|
|
|
|
PanicAlert("memory corruption detected. see log."); \
|
|
|
|
}
|
|
|
|
// 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);
|
|
|
|
#endif // end DEBUG/FAST
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2012-03-23 01:57:30 +00:00
|
|
|
#endif
|
|
|
|
|
2009-02-28 01:26:56 +00:00
|
|
|
// Windows compatibility
|
2010-07-10 21:17:08 +00:00
|
|
|
#ifndef _WIN32
|
|
|
|
#include <limits.h>
|
|
|
|
#define MAX_PATH PATH_MAX
|
2014-03-02 11:21:50 +00:00
|
|
|
|
2010-07-10 21:17:08 +00:00
|
|
|
#define __forceinline inline __attribute__((always_inline))
|
|
|
|
#endif
|
2009-02-28 01:26:56 +00:00
|
|
|
|
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.
|
|
|
|
// wxWidgets does not have a true dummy macro for this.
|
|
|
|
#define _trans(a) a
|
|
|
|
|
2011-02-02 04:40:27 +00:00
|
|
|
// Host communication.
|
|
|
|
enum HOST_COMM
|
|
|
|
{
|
2016-06-24 08:43:46 +00:00
|
|
|
// Begin at 10 in case there is already messages with wParam = 0, 1, 2 and so on
|
|
|
|
WM_USER_STOP = 10,
|
|
|
|
WM_USER_CREATE,
|
|
|
|
WM_USER_SETCURSOR,
|
|
|
|
WM_USER_JOB_DISPATCH,
|
2011-02-02 04:40:27 +00:00
|
|
|
};
|