From 42548ef5d199eee78a55c304438eca1399f590e5 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Fri, 22 Apr 2022 17:59:01 +0200 Subject: [PATCH] Update standalone target todos --- src/wrapper/standalone.rs | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/wrapper/standalone.rs b/src/wrapper/standalone.rs index ac880db0..2304ce13 100644 --- a/src/wrapper/standalone.rs +++ b/src/wrapper/standalone.rs @@ -37,12 +37,12 @@ mod wrapper; /// By default this will connect to the 'default' audio and MIDI ports. Use the command line options /// to change this. `--help` lists all available options. /// -/// # TODO +/// # TODOs /// -/// The aforementioned command line options have not yet been implemented. -// -// TODO: Actually implement command line flags for changing the IO configuration -// TODO: Add a way to set the IO configuration at runtime, for instance through the plugin's GUI +/// The aforementioned command line options have not yet been implemented. Currently there's also no +/// way to change these options at runtime, for instance through the plugin's GUI. And lastly +/// there's no way to interact with parameters outside of what's exposed through the plugin's GUI. +/// We should implement a REPL at some point for interacting with the plugin. pub fn nih_export_standalone() { nih_export_standalone_with_args::(std::env::args()) }