1
0
mirror of https://github.com/cookiengineer/audacity synced 2026-01-10 22:55:56 +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

@@ -27,6 +27,11 @@ using namespace std;
#define MAX(x, y) ((x) > (y) ? (x) : (y))
#define ROUND(x) ((int) ((x) + 0.5))
#ifdef max
#undef max
#endif
#define max(x,y) ((x)>(y)?(x):(y))
// 4311 is type cast ponter to long warning
// 4996 is warning against strcpy
// 4267 is size_t to long warning