mirror of
https://github.com/onyx-and-iris/vmrcli.git
synced 2026-04-08 18:03:33 +00:00
first commit
This commit is contained in:
1093
include/VoicemeeterRemote.h
Normal file
1093
include/VoicemeeterRemote.h
Normal file
File diff suppressed because it is too large
Load Diff
9
include/cdll.h
Normal file
9
include/cdll.h
Normal file
@@ -0,0 +1,9 @@
|
||||
#include <windows.h>
|
||||
#include "VoicemeeterRemote.h"
|
||||
|
||||
#ifndef __CDLL_H__
|
||||
#define __CDLL_H__
|
||||
|
||||
long initialize_dll_interfaces(T_VBVMR_INTERFACE *iVMR);
|
||||
|
||||
#endif /*__CDLL_H__*/
|
||||
22
include/vmr.h
Normal file
22
include/vmr.h
Normal file
@@ -0,0 +1,22 @@
|
||||
#include <stdbool.h>
|
||||
#include "voicemeeterRemote.h"
|
||||
|
||||
#ifndef __VMR_H__
|
||||
#define __VMR_H__
|
||||
|
||||
long login(T_VBVMR_INTERFACE *iVMR);
|
||||
long logout(T_VBVMR_INTERFACE *iVMR);
|
||||
long run_voicemeeter(T_VBVMR_INTERFACE *iVMR);
|
||||
long type(T_VBVMR_INTERFACE *iVMR, long *type);
|
||||
long version(T_VBVMR_INTERFACE *iVMR, long *version);
|
||||
|
||||
bool pdirty(T_VBVMR_INTERFACE *iVMR);
|
||||
long set_parameters(T_VBVMR_INTERFACE *iVMR, char *command);
|
||||
|
||||
bool mdirty(T_VBVMR_INTERFACE *iVMR);
|
||||
long macrobutton_getstatus(T_VBVMR_INTERFACE *iVMR, long n, float *val, long mode);
|
||||
long macrobutton_setstatus(T_VBVMR_INTERFACE *iVMR, long n, float val, long mode);
|
||||
|
||||
void clear_dirty(T_VBVMR_INTERFACE *iVMR);
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user