alter platform-dependent preprocessor macros to use the same names as the rest of the ardour codebase

This commit is contained in:
Paul Davis 2014-05-01 09:32:18 -04:00
parent 1c77df4d8f
commit 12d5a33626
16 changed files with 61 additions and 63 deletions

View file

@ -16,10 +16,10 @@ class DllExport UMicroseconds
{
public:
#ifdef _WINDOWS
#ifdef PLATFORM_WINDOWS
typedef int64_t TimeKeeper;
#endif
#ifdef __MACOS__
#ifdef __APPLE__
typedef uint64_t TimeKeeper;
#endif
#ifdef __linux__
@ -52,7 +52,7 @@ public:
double MilliSeconds() const {return static_cast<double>(theTime) / double(1000);}
double MicroSeconds() const {return static_cast<double>(theTime);}
#ifdef __MACOS__
#ifdef __APPLE__
uint32_t hi();
uint32_t lo();
#endif