mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2024-11-15 17:40:56 +00:00
fixes compiler error 'Forward declaration of enums'
This commit is contained in:
parent
b6b4b04a8a
commit
8aeb793a41
@ -3,7 +3,7 @@
|
||||
|
||||
void remove_name_in_path(char *szPath);
|
||||
int replace_multiple_space_with_one(char *s, size_t len);
|
||||
char *kind_as_string(char *s, enum kind kind, int n);
|
||||
char *kind_as_string(char *s, int kind, int n);
|
||||
char *version_as_string(char *, long v, int n);
|
||||
|
||||
#endif /* __UTIL_H__ */
|
@ -70,7 +70,7 @@ int replace_multiple_space_with_one(char *s, size_t len)
|
||||
* @param n maximum number of characters to be written to the buffer
|
||||
* @return char* The kind of Voicemeeter as a string
|
||||
*/
|
||||
char *kind_as_string(char *s, enum kind kind, int n)
|
||||
char *kind_as_string(char *s, int kind, int n)
|
||||
{
|
||||
char *kinds[] = {
|
||||
"Basic",
|
||||
|
Loading…
Reference in New Issue
Block a user