aboutsummaryrefslogtreecommitdiffstats
path: root/src/jalv_internal.h
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-07-13 21:24:10 +0000
committerDavid Robillard <d@drobilla.net>2014-07-13 21:24:10 +0000
commit712f209ee60da9ed61f58353b05b6b025d9321c0 (patch)
tree719377180b6f5dd1a89a6363f0a10d747d74c53c /src/jalv_internal.h
parentea74eb527d8cb7af2545f960f34e7d3517bd37fa (diff)
downloadjalv-712f209ee60da9ed61f58353b05b6b025d9321c0.tar.gz
jalv-712f209ee60da9ed61f58353b05b6b025d9321c0.tar.bz2
jalv-712f209ee60da9ed61f58353b05b6b025d9321c0.zip
Add option to print control output changes to stdout.
Update man pages and console jalv help output for new options. git-svn-id: http://svn.drobilla.net/lad/trunk/jalv@5410 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/jalv_internal.h')
-rw-r--r--src/jalv_internal.h21
1 files changed, 11 insertions, 10 deletions
diff --git a/src/jalv_internal.h b/src/jalv_internal.h
index 47a210d..64b490a 100644
--- a/src/jalv_internal.h
+++ b/src/jalv_internal.h
@@ -85,16 +85,17 @@ typedef struct {
} ControlChange;
typedef struct {
- char* uuid; ///< Session UUID
- char* load; ///< Path for state to load
- char** controls; ///< Control values
- uint32_t buffer_size; ///< Plugin<=>UI communication buffer size
- double update_rate; ///< UI update rate in Hz
- int dump; ///< Dump communication iff true
- int generic_ui; ///< Use generic UI iff true
- int show_hidden; ///< Show controls for notOnGUI ports
- int no_menu; ///< Hide menu iff true
- int show_ui; ///< Show non-embedded UI
+ char* uuid; ///< Session UUID
+ char* load; ///< Path for state to load
+ char** controls; ///< Control values
+ uint32_t buffer_size; ///< Plugin <= >UI communication buffer size
+ double update_rate; ///< UI update rate in Hz
+ int dump; ///< Dump communication iff true
+ int generic_ui; ///< Use generic UI iff true
+ int show_hidden; ///< Show controls for notOnGUI ports
+ int no_menu; ///< Hide menu iff true
+ int show_ui; ///< Show non-embedded UI
+ int print_controls; ///< Print control changes to stdout
} JalvOptions;
typedef struct {