[LIBSAMPLERATE]

- Fix amd64 build

svn path=/trunk/; revision=53389
This commit is contained in:
Timo Kreuzer 2011-08-22 22:22:11 +00:00
parent d86d341a8e
commit 5890b7558e

View file

@ -207,12 +207,11 @@
#define inline __inline #define inline __inline
/* ReactOS hacks */ /* ReactOS hacks */
void DbgBreak(void); void __stdcall DbgBreakPoint(void);
unsigned long __cdecl DbgPrint(const char *Format, ...); unsigned long __cdecl DbgPrint(const char *Format, ...);
#define exit(n) DbgBreak() #define exit(n) DbgBreakPoint()
#define printf DbgPrint #define printf DbgPrint
#ifdef _M_AMD64 # ifdef _MSC_VER
#define _mm_load_sd(x) __hack_hack(x) // Prevent an internal compiler error # pragma warning(disable:4244)
#pragma warning(disable:4244) # endif /* _MSC_VER */
#endif