LMMS
Loading...
Searching...
No Matches
CarlaEngineInternal.cpp File Reference
#include "CarlaEngineInternal.hpp"
#include "CarlaPlugin.hpp"
#include "CarlaSemUtils.hpp"
#include "jackbridge/JackBridge.hpp"
#include <ctime>
#include <sys/time.h>

Macros

#define CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERR(cond, err)
#define CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERRN(cond, err)
#define ACTION_MSG_PREFIX   ""

Functions

static int64_t getTimeInMicroseconds () noexcept

Variables

static const double kTicksPerBeat = 1920.0

Macro Definition Documentation

◆ ACTION_MSG_PREFIX

#define ACTION_MSG_PREFIX   ""

◆ CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERR

#define CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERR ( cond,
err )
Value:
if (! (cond)) { carla_safe_assert(#cond, __FILE__, __LINE__); lastError = err; return false; }

◆ CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERRN

#define CARLA_SAFE_ASSERT_RETURN_INTERNAL_ERRN ( cond,
err )
Value:
if (! (cond)) { carla_safe_assert(#cond, __FILE__, __LINE__); lastError = err; return nullptr; }

Function Documentation

◆ getTimeInMicroseconds()

int64_t getTimeInMicroseconds ( )
staticnoexcept

Variable Documentation

◆ kTicksPerBeat

const double kTicksPerBeat = 1920.0
static