
subrepo: subdir: "deps/clap-juce-extensions/clap-libs/clap" merged: "3189bdfaf" upstream: origin: "https://github.com/free-audio/clap" branch: "main" commit: "3189bdfaf" git-subrepo: version: "0.4.3" origin: "https://github.com/ingydotnet/git-subrepo.git" commit: "2f68596"
27 lines
699 B
C
27 lines
699 B
C
#pragma once
|
|
|
|
#include "../plugin.h"
|
|
|
|
static CLAP_CONSTEXPR const char CLAP_EXT_THREAD_CHECK[] = "clap.thread-check";
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
// This interface is useful to do runtime checks and make
|
|
// sure that the functions are called on the correct threads.
|
|
// It is highly recommended to implement this extension
|
|
typedef struct clap_host_thread_check {
|
|
// Returns true if "this" thread is the main thread.
|
|
// [thread-safe]
|
|
bool (*is_main_thread)(const clap_host_t *host);
|
|
|
|
// Returns true if "this" thread is one of the audio threads.
|
|
// [thread-safe]
|
|
bool (*is_audio_thread)(const clap_host_t *host);
|
|
} clap_host_thread_check_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|