15 lines
221 B
C++
15 lines
221 B
C++
#pragma once
|
|
|
|
#include <mutex>
|
|
|
|
#include <windows.h>
|
|
#include <audioclient.h>
|
|
|
|
constexpr bool AUDIO_LOG_HRESULT = true;
|
|
|
|
namespace hooks::audio {
|
|
|
|
extern IAudioClient *CLIENT;
|
|
extern std::mutex INITIALIZE_LOCK;
|
|
}
|