diff options
author | David Robillard <d@drobilla.net> | 2006-07-26 03:25:08 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-07-26 03:25:08 +0000 |
commit | 2cd84e4209633e59439c445f821bed8410347bab (patch) | |
tree | ba34505505795cff5cf35c2958ed21933b822e12 /examples/plugins/Amp-slv2.lv2/manifest.ttl | |
parent | deca2cc89850dffc051d0a0aafc9d681af838934 (diff) | |
download | lilv-2cd84e4209633e59439c445f821bed8410347bab.tar.gz lilv-2cd84e4209633e59439c445f821bed8410347bab.tar.bz2 lilv-2cd84e4209633e59439c445f821bed8410347bab.zip |
- Removed all the unsigned char garbage from the API
- Updated types in lv2.h to be non-machine-dependant (removed unsigned long in favour of uint32_t)
- Updated schema
- Updated example plugin to work with the above (partially)
git-svn-id: http://svn.drobilla.net/lad/libslv2@101 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Amp-slv2.lv2/manifest.ttl')
-rw-r--r-- | examples/plugins/Amp-slv2.lv2/manifest.ttl | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/examples/plugins/Amp-slv2.lv2/manifest.ttl b/examples/plugins/Amp-slv2.lv2/manifest.ttl new file mode 100644 index 0000000..94456e6 --- /dev/null +++ b/examples/plugins/Amp-slv2.lv2/manifest.ttl @@ -0,0 +1,11 @@ +# LV2 Plugin Manifest +# Lists where plugins' data files and shared objects reside. + +@prefix lv2: <http://lv2plug.in/ontology#> . +@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> . + +<http://codeson.net/plugins/amp> + lv2:binary <amp.so> ; + rdfs:seeAlso <amp.ttl> . + + |