summaryrefslogtreecommitdiffstats
path: root/lilv
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-01-11 18:05:57 +0100
committerDavid Robillard <d@drobilla.net>2019-01-11 18:05:57 +0100
commitbb5d979410bacfd2ad9730b204babcd9753bfd9a (patch)
tree752476da9fa3189c7615e6fd4c6d4acbd7b3186e /lilv
parentbf061a4e95d844275edffefd9c3680a27992b9c9 (diff)
downloadlilv-bb5d979410bacfd2ad9730b204babcd9753bfd9a.tar.gz
lilv-bb5d979410bacfd2ad9730b204babcd9753bfd9a.tar.bz2
lilv-bb5d979410bacfd2ad9730b204babcd9753bfd9a.zip
Fix order of parameter documentation
Diffstat (limited to 'lilv')
-rw-r--r--lilv/lilv.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/lilv/lilv.h b/lilv/lilv.h
index f709cf1..589da8c 100644
--- a/lilv/lilv.h
+++ b/lilv/lilv.h
@@ -1289,6 +1289,14 @@ typedef const void* (*LilvGetPortValueFunc)(const char* port_symbol,
about saving one state snapshot, it can be the same as `save_dir`. Plugin
state will refer to files in this directory.
+ @param link_dir Directory of links to external files (or NULL). A link will
+ be made in this directory to any external files referred to in plugin state.
+ In turn, links will be created in the save directory to these links (e.g.
+ save_dir/file => link_dir/file => /foo/bar/file). This allows many state
+ snapshots to share a single link to an external file, so archival
+ (e.g. with tar -h) will not create several copies of the file. If this is
+ not required, it can be the same as save_dir.
+
@param save_dir Directory of files created by plugin during save (or NULL).
If the state will be saved, this should be the bundle directory later passed
to lilv_state_save().
@@ -1299,14 +1307,6 @@ typedef const void* (*LilvGetPortValueFunc)(const char* port_symbol,
@param user_data User data to pass to `get_value`.
- @param link_dir Directory of links to external files (or NULL). A link will
- be made in this directory to any external files referred to in plugin state.
- In turn, links will be created in the save directory to these links (e.g.
- save_dir/file => link_dir/file => /foo/bar/file). This allows many state
- snapshots to share a single link to an external file, so archival
- (e.g. with tar -h) will not create several copies of the file. If this is
- not required, it can be the same as save_dir.
-
@param flags Bitwise OR of LV2_State_Flags values.
@param features Features to pass LV2_State_Interface.save().