
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
583 B
C
27 lines
583 B
C
#pragma once
|
|
|
|
#include "../plugin.h"
|
|
|
|
static CLAP_CONSTEXPR const char CLAP_EXT_TAIL[] = "clap.tail";
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
typedef struct clap_plugin_tail {
|
|
// Returns tail length in samples.
|
|
// Any value greater or equal to INT32_MAX implies infinite tail.
|
|
// [main-thread,audio-thread]
|
|
uint32_t (*get)(const clap_plugin_t *plugin);
|
|
} clap_plugin_tail_t;
|
|
|
|
typedef struct clap_host_tail {
|
|
// Tell the host that the tail has changed.
|
|
// [audio-thread]
|
|
void (*changed)(const clap_host_t *host);
|
|
} clap_host_tail_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|