move includes into header guards

This commit is contained in:
onyx-and-iris 2024-06-27 01:17:09 +01:00
parent 9863ca6dca
commit 4488a386b8
2 changed files with 6 additions and 6 deletions

View File

@ -1,9 +1,9 @@
#include <windows.h>
#include "VoicemeeterRemote.h"
#ifndef __CDLL_H__
#define __CDLL_H__
#include <windows.h>
#include "VoicemeeterRemote.h"
long initialize_dll_interfaces(T_VBVMR_INTERFACE *iVMR);
#endif /*__CDLL_H__*/

View File

@ -1,9 +1,9 @@
#include <stdbool.h>
#include "voicemeeterRemote.h"
#ifndef __VMR_H__
#define __VMR_H__
#include <stdbool.h>
#include "voicemeeterRemote.h"
enum kind
{
BASIC = 1,