commit aa16d2492612f76f67a2983df8728d50a13c4bb2
parent 609b5b4156f078c1697215eaacd133cd7ef34130
Author: Alexandre Bique <bique.alexandre@gmail.com>
Date: Mon, 12 Dec 2022 15:31:45 +0100
Fix includes
Diffstat:
2 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/include/clap/clap.h b/include/clap/clap.h
@@ -52,13 +52,14 @@
#include "ext/voice-info.h"
#include "ext/draft/ambisonic.h"
+#include "ext/draft/audio-ports-activation.h"
#include "ext/draft/context-menu.h"
#include "ext/draft/cv.h"
-#include "ext/draft/file-reference.h"
#include "ext/draft/midi-mappings.h"
#include "ext/draft/param-indication.h"
#include "ext/draft/preset-load.h"
#include "ext/draft/remote-controls.h"
+#include "ext/draft/resource-directory.h"
#include "ext/draft/state-context.h"
#include "ext/draft/surround.h"
#include "ext/draft/track-info.h"
diff --git a/include/clap/ext/draft/resource-directory.h b/include/clap/ext/draft/resource-directory.h
@@ -72,12 +72,12 @@ typedef struct clap_host_resource_directory {
// Request the host to setup a resource directory with the specified sharing.
// Returns true if the host will perform the request.
// [main-thread]
- bool(CLAP_ABI *request_directory)(const clap_host *host, bool is_shared);
+ bool(CLAP_ABI *request_directory)(const clap_host_t *host, bool is_shared);
// Tell the host that the resource directory of the specified sharing is no longer required.
// If is_shared = false, then the host may delete the directory content.
// [main-thread]
- void(CLAP_ABI *release_directory)(const clap_host *host, bool is_shared);
+ void(CLAP_ABI *release_directory)(const clap_host_t *host, bool is_shared);
} clap_host_resource_directory_t;
#ifdef __cplusplus