From 401bb95187c8785d926ee1c3773106211fff65b5 Mon Sep 17 00:00:00 2001 From: Robbert van der Helm Date: Sun, 19 Feb 2023 22:09:03 +0100 Subject: [PATCH] Add a todo for standalone exit codes --- src/wrapper/standalone.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wrapper/standalone.rs b/src/wrapper/standalone.rs index c26c3560..c7a29ae3 100644 --- a/src/wrapper/standalone.rs +++ b/src/wrapper/standalone.rs @@ -48,6 +48,8 @@ mod wrapper; /// If the wrapped plugin fails to initialize or throws an error during audio processing, then this /// function will return `false`. pub fn nih_export_standalone() -> bool { + // TODO: If the backend fails to initialize then the standalones will exit normally instead of + // with an error code. This should probably be changed. nih_export_standalone_with_args::(std::env::args()) }