Optimizations (#1680)
* Optimizations 1) Some headers simplified for better compilation time 2) Some templates simplified for smaller executable size 3) Eliminate std::future to fix compilation for mingw64 4) PKG installation can be cancelled now 5) cellGame fixes 6) XAudio2 fix for mingw64 7) PPUInterpreter bug fixed (Clang) * any_pod<> implemented Aliases: any16, any32, any64 rsx::make_command fixed
This commit is contained in:
Vendored
+13
@@ -62,6 +62,19 @@ DEFINE_IID(IXAudio2, 8bcf1f58, 9fe7, 4583, 8a, c6, e2, ad, c4, 65, c8, bb);
|
||||
#include <objbase.h> // Windows COM declarations
|
||||
#endif
|
||||
|
||||
#ifndef _MSC_VER
|
||||
#define __in
|
||||
#define __in_opt
|
||||
#define __in_bcount(x)
|
||||
#define __in_ecount(x)
|
||||
#define __deref_out
|
||||
#define __out
|
||||
#define __out_ecount(x)
|
||||
#define __out_bcount(x)
|
||||
#define __inout
|
||||
#define __reserved
|
||||
#endif
|
||||
|
||||
#include <sal.h> // Markers for documenting API semantics
|
||||
#include <audiodefs.h> // Basic audio data types and constants
|
||||
#include <xma2defs.h> // Data types and constants for XMA2 audio
|
||||
|
||||
Reference in New Issue
Block a user