mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-21 06:06:25 +01:00
alter platform-dependent preprocessor macros to use the same names as the rest of the ardour codebase
This commit is contained in:
parent
1c77df4d8f
commit
12d5a33626
16 changed files with 61 additions and 63 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue