123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141 |
- #pragma once
- #include "openmpt/all/BuildSettings.hpp"
- #if defined(MODPLUG_TRACKER)
- #if defined(MPT_WITH_MFC)
- #include <afx.h> // MFC core
- #include <afxwin.h> // MFC standard components
- #include <afxext.h> // MFC extensions
- #include <afxcmn.h> // MFC support for Windows Common Controls
- #include <afxcview.h>
- #include <afxdlgs.h>
- #ifdef MPT_MFC_FULL
- #include <afxlistctrl.h>
- #endif
- #include <afxole.h>
- #endif
- #if MPT_OS_WINDOWS
- #include <windows.h>
- #include <windowsx.h>
- #include <shlwapi.h>
- #include <mmsystem.h>
- #endif
- #endif
- #if MPT_COMPILER_MSVC
- #include <intrin.h>
- #endif
- #include "mpt/base/span.hpp"
- #include "mpt/check/libc.hpp"
- #if defined(MPT_WITH_MFC)
- #include "mpt/check/mfc.hpp"
- #endif
- #if MPT_OS_WINDOWS
- #include "mpt/check/windows.hpp"
- #endif
- #include "mpt/exception_text/exception_text.hpp"
- #include "mpt/out_of_memory/out_of_memory.hpp"
- #include "mpt/system_error/system_error.hpp"
- #include "openmpt/base/Types.hpp"
- #include "openmpt/logging/Logger.hpp"
- #include <memory>
- #include <new>
- #include "../common/mptBaseMacros.h"
- #include "../common/mptBaseTypes.h"
- #include "../common/mptAssert.h"
- #include "../common/mptBaseUtils.h"
- #include "../common/mptString.h"
- #include "../common/mptStringBuffer.h"
- #include "../common/mptStringFormat.h"
- #include "../common/mptPathString.h"
- #include "../common/Logging.h"
- #include "../common/misc_util.h"
- #include <cstdlib>
- #include <stdlib.h>
- #include <cmath>
- #include <math.h>
|