
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"
34 lines
736 B
C
34 lines
736 B
C
#pragma once
|
|
|
|
#include "../plugin.h"
|
|
|
|
static CLAP_CONSTEXPR const char CLAP_EXT_LOG[] = "clap.log";
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
enum {
|
|
CLAP_LOG_DEBUG = 0,
|
|
CLAP_LOG_INFO = 1,
|
|
CLAP_LOG_WARNING = 2,
|
|
CLAP_LOG_ERROR = 3,
|
|
CLAP_LOG_FATAL = 4,
|
|
|
|
// Those severities should be used to report misbehaviour.
|
|
// The plugin one can be used by a layer between the plugin and the host.
|
|
CLAP_LOG_HOST_MISBEHAVING = 5,
|
|
CLAP_LOG_PLUGIN_MISBEHAVING = 6,
|
|
};
|
|
typedef int32_t clap_log_severity;
|
|
|
|
typedef struct clap_host_log {
|
|
// Log a message through the host.
|
|
// [thread-safe]
|
|
void (*log)(const clap_host_t *host, clap_log_severity severity, const char *msg);
|
|
} clap_host_log_t;
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|