diff --git a/src/ivmr.c b/src/ivmr.c index a4eafc7..60f5a17 100644 --- a/src/ivmr.c +++ b/src/ivmr.c @@ -3,7 +3,7 @@ * @author Vincent Burel, Onyx and Iris (code@onyxandiris.online) * @brief Functions for initializing the iVMR interface. * Defines a single public function that returns a pointer to the interface. - * @version 0.9.0 + * @version 0.10.0 * @date 2024-07-06 * * @copyright Vincent Burel(c)2015-2021 All Rights Reserved diff --git a/src/util.c b/src/util.c index 27c3af4..c465d99 100644 --- a/src/util.c +++ b/src/util.c @@ -2,7 +2,7 @@ * @file util.c * @author Onyx and Iris (code@onyxandiris.online) * @brief Utility functions. - * @version 0.9.0 + * @version 0.10.0 * @date 2024-07-06 * * @copyright Copyright (c) 2024 diff --git a/src/vmrcli.c b/src/vmrcli.c index 4934e35..80e2813 100644 --- a/src/vmrcli.c +++ b/src/vmrcli.c @@ -2,7 +2,7 @@ * @file vmrcli.c * @author Onyx and Iris (code@onyxandiris.online) * @brief A Voicemeeter Remote Command Line Interface - * @version 0.9.0 + * @version 0.10.0 * @date 2024-07-06 * * @copyright Copyright (c) 2024 @@ -61,7 +61,7 @@ struct result static bool vflag = false; static void usage(); -enum kind set_kind(char *kval); +static enum kind set_kind(char *kval); static void interactive(PT_VMR vmr, bool with_prompt); static void parse_input(PT_VMR vmr, char *input); static void parse_command(PT_VMR vmr, char *command); @@ -226,7 +226,7 @@ static void usage() * @param kval Value of the -k flag * @return enum kind */ -enum kind set_kind(char *kval) +static enum kind set_kind(char *kval) { if (strcmp(kval, "basic") == 0) return sizeof(void *) == 8 ? BASICX64 : BASIC; diff --git a/src/wrapper.c b/src/wrapper.c index 991dacb..271c108 100644 --- a/src/wrapper.c +++ b/src/wrapper.c @@ -2,7 +2,7 @@ * @file wrapper.c * @author Onyx and Iris (code@onyxandiris.online) * @brief Provides public functions that wrap the iVMR calls - * @version 0.9.0 + * @version 0.10.0 * @date 2024-07-06 * * @copyright Copyright (c) 2024