mirror of
https://github.com/ZDoom/qzdoom.git
synced 2024-11-11 07:11:54 +00:00
- reshuffled some stuff to satisfy Linux compilers (hopefully)
This commit is contained in:
parent
d46ba7bfb7
commit
47e7a30cab
3 changed files with 9 additions and 2 deletions
|
@ -26,7 +26,14 @@ inline int CheckException(DWORD code)
|
||||||
|
|
||||||
#else
|
#else
|
||||||
|
|
||||||
|
#ifdef __try
|
||||||
|
#undef __try
|
||||||
|
#endif
|
||||||
#define __try
|
#define __try
|
||||||
|
|
||||||
|
#ifdef __except
|
||||||
|
#undef __except
|
||||||
|
#endif
|
||||||
#define __except(a) if (0)
|
#define __except(a) if (0)
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -3,10 +3,10 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#define USE_WINDOWS_DWORD
|
#define USE_WINDOWS_DWORD
|
||||||
#endif
|
#endif
|
||||||
#include "except.h"
|
|
||||||
|
|
||||||
#include "mpg123_decoder.h"
|
#include "mpg123_decoder.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
|
#include "except.h"
|
||||||
|
|
||||||
#ifdef HAVE_MPG123
|
#ifdef HAVE_MPG123
|
||||||
static bool inited = false;
|
static bool inited = false;
|
||||||
|
|
|
@ -3,12 +3,12 @@
|
||||||
#include <windows.h>
|
#include <windows.h>
|
||||||
#define USE_WINDOWS_DWORD
|
#define USE_WINDOWS_DWORD
|
||||||
#endif
|
#endif
|
||||||
#include "except.h"
|
|
||||||
|
|
||||||
#include "sndfile_decoder.h"
|
#include "sndfile_decoder.h"
|
||||||
#include "templates.h"
|
#include "templates.h"
|
||||||
#include "files.h"
|
#include "files.h"
|
||||||
#include "xs_Float.h"
|
#include "xs_Float.h"
|
||||||
|
#include "except.h"
|
||||||
|
|
||||||
#ifdef HAVE_SNDFILE
|
#ifdef HAVE_SNDFILE
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue