1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-11-24 06:10:09 +01:00

Additional changes required to get build working under VS2013.

I'll send the changes to libscorealign and portsmf upstream.
This commit is contained in:
lllucius
2014-10-06 05:55:35 +00:00
parent 439f5d00d6
commit 0933da5b60
5 changed files with 21 additions and 2 deletions

View File

@@ -21,6 +21,16 @@
#endif
using namespace std;
#ifdef min
#undef min
#endif
#define min(x,y) ((x)<(y)?(x):(y))
#ifdef max
#undef max
#endif
#define max(x,y) ((x)>(y)?(x):(y))
//if 1, causes printing internally
#define PRINT_BIN_ENERGY 1