diff options
author | David Robillard <d@drobilla.net> | 2015-10-30 00:37:40 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-10-30 00:37:40 +0000 |
commit | 2fe35cd17f96a1d393fda203ccaa234b0aa69b16 (patch) | |
tree | 94e1f42f334ec3be791b1bb97ee96b27557f2c49 /ingen | |
parent | cc5ec7438bfc46fbbdcf980ba4f7f3d4a3e78e52 (diff) | |
download | ingen-2fe35cd17f96a1d393fda203ccaa234b0aa69b16.tar.gz ingen-2fe35cd17f96a1d393fda203ccaa234b0aa69b16.tar.bz2 ingen-2fe35cd17f96a1d393fda203ccaa234b0aa69b16.zip |
Add protocol for loading and unloading bundles
Currently this is only really useful for refreshing updated bundles. It will
trigger the appropriate load and unload in the Lilv world, but the set of
plugins and presets is not updated and clients will not be notified of any
changes.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5807 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen')
-rw-r--r-- | ingen/URIs.hpp | 1 | ||||
-rw-r--r-- | ingen/ingen.h | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/ingen/URIs.hpp b/ingen/URIs.hpp index 7f032cbc..00549593 100644 --- a/ingen/URIs.hpp +++ b/ingen/URIs.hpp @@ -113,6 +113,7 @@ public: const Quark ingen_file; const Quark ingen_head; const Quark ingen_incidentTo; + const Quark ingen_loadedBundle; const Quark ingen_polyphonic; const Quark ingen_polyphony; const Quark ingen_prototype; diff --git a/ingen/ingen.h b/ingen/ingen.h index 613541c5..d9091039 100644 --- a/ingen/ingen.h +++ b/ingen/ingen.h @@ -53,6 +53,7 @@ #define INGEN__file INGEN_NS "file" #define INGEN__head INGEN_NS "head" #define INGEN__incidentTo INGEN_NS "incidentTo" +#define INGEN__loadedBundle INGEN_NS "loadedBundle" #define INGEN__polyphonic INGEN_NS "polyphonic" #define INGEN__polyphony INGEN_NS "polyphony" #define INGEN__prototype INGEN_NS "prototype" |