Skip to content

Commit

Permalink
minor ver bump
Browse files Browse the repository at this point in the history
  • Loading branch information
onyx-and-iris committed Jul 13, 2024
1 parent 2181867 commit 2c1c703
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/ivmr.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion src/util.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions src/vmrcli.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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);
Expand Down Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion src/wrapper.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 2c1c703

Please sign in to comment.