rename vmr module to wrapper.

rename cdll module to ivmr

upd doc strings
This commit is contained in:
2024-07-06 09:03:13 +01:00
parent 09793afafa
commit 19a3a16b74
8 changed files with 113 additions and 42 deletions

View File

@@ -1,8 +0,0 @@
#ifndef __CDLL_H__
#define __CDLL_H__
#include "VoicemeeterRemote.h"
PT_VMR create_interface();
#endif /*__CDLL_H__*/

15
include/ivmr.h Normal file
View File

@@ -0,0 +1,15 @@
/**
* Copyright (c) 2024 Onyx and Iris
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See `ivmr.c` for details.
*/
#ifndef __IVMR_H__
#define __IVMR_H__
#include "VoicemeeterRemote.h"
PT_VMR create_interface();
#endif /* __IVMR_H__ */

View File

@@ -1,3 +1,10 @@
/**
* Copyright (c) 2024 Onyx and Iris
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See `util.c` for details.
*/
#ifndef __UTIL_H__
#define __UTIL_H__

View File

@@ -1,5 +1,12 @@
#ifndef __VMR_H__
#define __VMR_H__
/**
* Copyright (c) 2024 Onyx and Iris
*
* This library is free software; you can redistribute it and/or modify it
* under the terms of the MIT license. See `wrapper.c` for details.
*/
#ifndef __WRAPPER_H__
#define __WRAPPER_H__
#include <stdbool.h>
#include "voicemeeterRemote.h"
@@ -36,4 +43,4 @@ long macrobutton_setstatus(PT_VMR vmr, long n, float val, long mode);
void clear_dirty(PT_VMR vmr);
#endif /* __VMR_H__ */
#endif /* __WRAPPER_H__ */